From 5839838c75e68b8959dd3a3a77408548eb05905c Mon Sep 17 00:00:00 2001 From: "rickg%netscape.com" Date: Sun, 29 Aug 1999 23:39:25 +0000 Subject: [PATCH] replaced deprecated nsString use with nsCString git-svn-id: svn://10.0.0.236/trunk@45092 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpinstall/src/nsLoggingProgressNotifier.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/xpinstall/src/nsLoggingProgressNotifier.cpp b/mozilla/xpinstall/src/nsLoggingProgressNotifier.cpp index f87ffe6a25c..b58d67cc6c1 100644 --- a/mozilla/xpinstall/src/nsLoggingProgressNotifier.cpp +++ b/mozilla/xpinstall/src/nsLoggingProgressNotifier.cpp @@ -105,8 +105,8 @@ nsLoggingProgressNotifier::InstallStarted(const PRUnichar *URL, const PRUnichar* // char* time; // GetTime(&time); - nsString name(UIPackageName,eOneByte); - nsString uline(eOneByte); + nsCString name(UIPackageName); + nsCString uline; uline.SetCapacity(name.Length()); for ( int i=0; i < name.Length(); ++i) uline.SetCharAt('-', i);