fixing code that relied on implicit string construction

This commit is contained in:
scc%mozilla.org 2000-09-02 21:14:12 +00:00
Родитель 96b9a39082
Коммит 7ca3724d34
3 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -894,7 +894,7 @@ nsPICS::OnEndURLLoad(nsIDocumentLoader* loader,
nsAutoString hostStr(uHost);
// Construct a chrome URL and use it to look up a resource.
nsAutoString rootStr = protocolStr + "://" + hostStr + "/";
nsAutoString rootStr(protocolStr + "://" + hostStr + "/");
// XXX if we're no longer calling GetRootURL, these calls can go away
// rv = NS_NewURI(&rootURL, rootStr);

Просмотреть файл

@ -178,7 +178,7 @@ NS_IMETHODIMP nsPICSElementObserver::Notify(PRUint32 aDocumentID,
if(status) {
if(ws) {
char * text = PR_GetEnv("NGLAYOUT_HOME");
nsString mtemplateURL = text ? text : "resource:/res/samples/picstest1.html";
nsString mtemplateURL(text ? text : "resource:/res/samples/picstest1.html");
// ws->LoadURL(mtemplateURL, nsnull, nsnull);
nsCharsetSource s;
ws->SetRendering(PR_TRUE);

Просмотреть файл

@ -1937,7 +1937,7 @@ si_RememberSignonData
Wallet_GiveCaveat(window, nsnull);
for (j=0; j<signonData->Count(); j++) {
data2 = NS_STATIC_CAST(si_SignonDataStruct*, signonData->ElementAt(j));
nsAutoString value = data2->value;
nsAutoString value(data2->value);
if (NS_FAILED(si_Encrypt(value, data2->value))) {
return;
}
@ -2256,7 +2256,7 @@ SINGSIGN_PromptUsernameAndPassword
/* do only the dialog if signon preference is not enabled */
if (!si_GetSignonRememberingPref()){
nsString realm = NS_ConvertToString(passwordRealm); // XXX hack
nsString realm(NS_ConvertToString(passwordRealm)); // XXX hack
return dialog->PromptUsernameAndPassword(dialogTitle, text, realm.GetUnicode(),
savePassword, user, pwd, pressedOK);
}
@ -2298,7 +2298,7 @@ SINGSIGN_PromptPassword
/* do only the dialog if signon preference is not enabled */
if (!si_GetSignonRememberingPref()){
nsString realm = NS_ConvertToString(passwordRealm); // XXX hack
nsString realm(NS_ConvertToString(passwordRealm)); // XXX hack
res = dialog->PromptPassword(dialogTitle,
text, realm.GetUnicode(), savePassword,
pwd, pressedOK);
@ -2345,7 +2345,7 @@ SINGSIGN_Prompt
/* do only the dialog if signon preference is not enabled */
if (!si_GetSignonRememberingPref()){
nsString realm = NS_ConvertToString(passwordRealm); // XXX hack
nsString realm(NS_ConvertToString(passwordRealm)); // XXX hack
res = dialog->Prompt(dialogTitle, text, realm.GetUnicode(), savePassword, defaultText, resultText, pressedOK);
return res;
}