Bug 355342 warning: `nsCopyRequest::m_newMsgFlags' will be initialized after `PRBool nsCopyRequest::m_processed'

r=bienvenu sr=bienvenu
This commit is contained in:
timeless%mozdev.org 2006-11-02 21:20:41 +00:00
Родитель 1349973ac1
Коммит af8d622530
3 изменённых файлов: 4 добавлений и 4 удалений

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

@ -79,8 +79,8 @@ void nsCopySource::AddMessage(nsIMsgDBHdr* aMsg)
nsCopyRequest::nsCopyRequest() :
m_requestType(nsCopyMessagesType),
m_isMoveOrDraftOrTemplate(PR_FALSE),
m_newMsgFlags(0),
m_processed(PR_FALSE)
m_processed(PR_FALSE),
m_newMsgFlags(0)
{
MOZ_COUNT_CTOR(nsCopyRequest);
}

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

@ -86,10 +86,10 @@
nsMsgIncomingServer::nsMsgIncomingServer():
m_rootFolder(0),
m_numMsgsDownloaded(0),
m_prefBranch(0),
m_biffState(nsIMsgFolder::nsMsgBiffState_NoMail),
m_serverBusy(PR_FALSE),
m_numMsgsDownloaded(0),
m_canHaveFilters(PR_TRUE),
m_displayStartupPage(PR_TRUE),
mPerformingBiff(PR_FALSE)

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

@ -114,7 +114,7 @@ static NS_DEFINE_CID(kCNewsDB, NS_NEWSDB_CID);
nsMsgNewsFolder::nsMsgNewsFolder(void) : nsMsgLineBuffer(nsnull, PR_FALSE),
mExpungedBytes(0), mGettingNews(PR_FALSE),
mInitialized(PR_FALSE), mOptionLines(""), mUnsubscribedNewsgroupLines(""),
mInitialized(PR_FALSE),
m_downloadMessageForOfflineUse(PR_FALSE), m_downloadingMultipleMessages(PR_FALSE),
mReadSet(nsnull), mGroupUsername(nsnull), mGroupPassword(nsnull)
{