mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 266289 nsIAlertsService should use AString instead of wstring
r=mscott sr=neil
This commit is contained in:
parent
19d6f0e3fc
commit
dd66f98c9b
@ -485,7 +485,8 @@ nsresult nsMessengerWinIntegration::ShowAlertMessage(const PRUnichar * aAlertTit
|
||||
nsCOMPtr<nsIAlertsService> alertsService (do_GetService(NS_ALERTSERVICE_CONTRACTID, &rv));
|
||||
if (NS_SUCCEEDED(rv))
|
||||
{
|
||||
rv = alertsService->ShowAlertNotification(NS_LITERAL_STRING(NEW_MAIL_ALERT_ICON), nsDependentString(aAlertTitle), nsDependentString(aAlertText), PR_TRUE,
|
||||
rv = alertsService->ShowAlertNotification(NS_LITERAL_STRING(NEW_MAIL_ALERT_ICON), nsDependentString(aAlertTitle),
|
||||
nsDependentString(aAlertText), PR_TRUE,
|
||||
NS_ConvertASCIItoUCS2(aFolderURI), this);
|
||||
mAlertInProgress = PR_TRUE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user