mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-03 12:35:58 +00:00
fix build bustage from last checkin
This commit is contained in:
parent
29ae639309
commit
21e59f788d
@ -3788,7 +3788,7 @@ nsMsgLocalMailFolder::WarnIfLocalFileTooBig(nsIMsgWindow *aWindow, PRBool *aTooB
|
||||
*aTooBig = PR_FALSE;
|
||||
PRInt64 sizeOnDisk;
|
||||
nsCOMPtr <nsILocalFile> filePath;
|
||||
rv = GetFilePath(getter_AddRefs(filePath));
|
||||
nsresult rv = GetFilePath(getter_AddRefs(filePath));
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
rv = filePath->GetFileSize(&sizeOnDisk);
|
||||
if (NS_SUCCEEDED(rv))
|
||||
|
@ -2060,7 +2060,7 @@ nsresult nsParseNewMailState::MoveIncorporatedMessage(nsIMsgDBHdr *mailHdr,
|
||||
return NS_MSG_NOT_A_MAIL_FOLDER;
|
||||
}
|
||||
|
||||
nsCOMPtr <nsILocalMailFolder> destLocalFolder = do_QueryInterface(destIFolder);
|
||||
nsCOMPtr <nsIMsgLocalMailFolder> destLocalFolder = do_QueryInterface(destIFolder);
|
||||
if (destLocalFolder)
|
||||
{
|
||||
PRBool destFolderTooBig;
|
||||
|
@ -123,7 +123,7 @@ nsresult nsPop3Service::GetMail(PRBool downloadNewMail,
|
||||
|
||||
server = do_QueryInterface(aPopServer);
|
||||
|
||||
nsCOMPtr <nsILocalMailFolder> destLocalFolder = do_QueryInterface(aInbox);
|
||||
nsCOMPtr <nsIMsgLocalMailFolder> destLocalFolder = do_QueryInterface(aInbox);
|
||||
if (destLocalFolder)
|
||||
{
|
||||
PRBool destFolderTooBig;
|
||||
@ -135,7 +135,7 @@ nsresult nsPop3Service::GetMail(PRBool downloadNewMail,
|
||||
if (!server)
|
||||
return NS_MSG_INVALID_OR_MISSING_SERVER;
|
||||
|
||||
rv = server->GetHostName(getter_Copies(popHost));
|
||||
nsresult rv = server->GetHostName(getter_Copies(popHost));
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
if (!((const char *)popHost))
|
||||
return NS_MSG_INVALID_OR_MISSING_SERVER;
|
||||
|
Loading…
x
Reference in New Issue
Block a user