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:
bugzilla%standard8.demon.co.uk 2007-06-20 15:34:16 +00:00
Родитель 0050a0b612
Коммит bceb6dde09
2 изменённых файлов: 3 добавлений и 4 удалений

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

@ -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);