зеркало из https://github.com/mozilla/pjs.git
Possible fix for Bug 384701 Mailcompose erroring out on migrated profile - match movemail's GetLocalStoreType function prototype to the rest of mailnews. r/sr=bienvenu.
This commit is contained in:
Родитель
0050a0b612
Коммит
bceb6dde09
|
@ -73,10 +73,9 @@ nsMovemailIncomingServer::GetIsSecureServer(PRBool *aIsSecureServer)
|
|||
}
|
||||
|
||||
nsresult
|
||||
nsMovemailIncomingServer::GetLocalStoreType(char **type)
|
||||
nsMovemailIncomingServer::GetLocalStoreType(nsACString &type)
|
||||
{
|
||||
NS_ENSURE_ARG_POINTER(type);
|
||||
*type = strdup("mailbox");
|
||||
type.AssignLiteral("mailbox");
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ public:
|
|||
virtual ~nsMovemailIncomingServer();
|
||||
|
||||
NS_IMETHOD GetIsSecureServer(PRBool *aIsSecureServer);
|
||||
NS_IMETHOD GetLocalStoreType(char * *type);
|
||||
NS_IMETHOD GetLocalStoreType(nsACString &type);
|
||||
NS_IMETHOD PerformBiff(nsIMsgWindow *aMsgWindow);
|
||||
NS_IMETHOD GetDownloadMessagesAtStartup(PRBool *getMessages);
|
||||
NS_IMETHOD GetCanSearchMessages(PRBool *canSearchMessages);
|
||||
|
|
Загрузка…
Ссылка в новой задаче