fixing bustage

git-svn-id: svn://10.0.0.236/trunk@95792 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
scc%mozilla.org
2001-05-23 04:19:39 +00:00
parent 060316aeb9
commit 9dafc29f8a
3 changed files with 3 additions and 3 deletions

View File

@@ -875,7 +875,7 @@ nsLDAPChannel::OnLDAPSearchEntry(nsILDAPMessage *aMessage)
NS_ENSURE_SUCCESS(rv, rv);
entry.SetCapacity(256);
entry = NS_LITERAL_STRING("dn: ") + nsLiteralString(dn)
entry = NS_LITERAL_STRING("dn: ") + nsDependentString(dn)
+ NS_LITERAL_STRING("\n");
char **attrs;

View File

@@ -834,7 +834,7 @@ NS_IMETHODIMP nsDeviceContextWin :: BeginDocument(PRUnichar * aTitle)
char *title = nsnull;
if( nsnull != aTitle) {
title = ToNewCString(nsLiteralString(aTitle));
title = ToNewCString(nsDependentString(aTitle));
}
docinfo.cbSize = sizeof(docinfo);

View File

@@ -228,7 +228,7 @@ NS_IMPL_ISUPPORTS1(nsFontCleanupObserver, nsIObserver);
NS_IMETHODIMP nsFontCleanupObserver::Observe(nsISupports *aSubject, const PRUnichar *aTopic, const PRUnichar *someData)
{
nsLiteralString aTopicString(aTopic);
nsDependentString aTopicString(aTopic);
if (aTopicString.Equals(NS_LITERAL_STRING(NS_XPCOM_SHUTDOWN_OBSERVER_ID))) {
FreeGlobals();
}