fix build bustage from last checkin

This commit is contained in:
bienvenu%nventure.com 2005-08-02 22:32:21 +00:00
parent 29ae639309
commit 21e59f788d
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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