Fix bustage

This commit is contained in:
jaggernaut%netscape.com 2001-12-17 08:10:57 +00:00
parent ab93285bed
commit fe4f079813
3 changed files with 2 additions and 7 deletions

View File

@ -34,7 +34,6 @@ endif
REQUIRES = necko \
string \
unicharutil \
$(NULL)
CPPSRCS = \
@ -74,7 +73,6 @@ CPPSRCS += \
endif
LIBS += \
$(MOZ_UNICHARUTIL_LIBS) \
$(XPCOM_LIBS) \
$(NSPR_LIBS) \
$(NULL)

View File

@ -37,7 +37,6 @@
#include "nsIAtom.h"
#include "nsString.h"
#include "nsReadableUtils.h"
#include "nsUnicharUtils.h"
#include "prprf.h"
#include "prtime.h"
#include <stdio.h>
@ -64,8 +63,8 @@ int main(int argc, char** argv)
if (nsnull == s) {
break;
}
nsAutoString sb;
sb.AssignWithConversion(buf);
nsCAutoString sb;
sb.Assign(buf);
strings[count++] = ToNewUnicode(sb);
ToUpperCase(sb);
strings[count++] = ToNewUnicode(sb);

View File

@ -23,7 +23,6 @@ DEPTH=..\..
REQUIRES = xpcom \
string \
necko \
unicharutil \
$(NULL)
include <$(DEPTH)/config/config.mak>
@ -88,7 +87,6 @@ LINCS= \
$(NULL)
LLIBS= \
$(DIST)\lib\unicharutil_s.lib \
$(DIST)\lib\xpcom.lib \
$(LIBNSPR)