From fe4f0798135930813dc4003c6941c13c28730693 Mon Sep 17 00:00:00 2001 From: "jaggernaut%netscape.com" Date: Mon, 17 Dec 2001 08:10:57 +0000 Subject: [PATCH] Fix bustage --- xpcom/tests/Makefile.in | 2 -- xpcom/tests/TestAtoms.cpp | 5 ++--- xpcom/tests/makefile.win | 2 -- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/xpcom/tests/Makefile.in b/xpcom/tests/Makefile.in index a44315f516a8..30324317f3f4 100644 --- a/xpcom/tests/Makefile.in +++ b/xpcom/tests/Makefile.in @@ -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) diff --git a/xpcom/tests/TestAtoms.cpp b/xpcom/tests/TestAtoms.cpp index d0a4c59fde8f..b4074b4bbbed 100644 --- a/xpcom/tests/TestAtoms.cpp +++ b/xpcom/tests/TestAtoms.cpp @@ -37,7 +37,6 @@ #include "nsIAtom.h" #include "nsString.h" #include "nsReadableUtils.h" -#include "nsUnicharUtils.h" #include "prprf.h" #include "prtime.h" #include @@ -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); diff --git a/xpcom/tests/makefile.win b/xpcom/tests/makefile.win index 492d3d5cc02c..d2f824a71a10 100644 --- a/xpcom/tests/makefile.win +++ b/xpcom/tests/makefile.win @@ -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)