Fixing member re-ordering warnings. r+sr=jst@netscape.com; No bug.

This commit is contained in:
caillon%returnzero.com 2003-07-03 23:33:36 +00:00
Родитель 5ab7f5c9f8
Коммит 9ae39b6952
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -515,9 +515,9 @@ void DocumentViewerImpl::PrepareToStartLoad()
// Note: operator new zeros our memory, so no need to init things to null.
DocumentViewerImpl::DocumentViewerImpl(nsIPresContext* aPresContext)
: mPresContext(aPresContext),
mHintCharsetSource(kCharsetUninitialized),
mAllowPlugins(PR_TRUE),
mIsSticky(PR_TRUE),
mHintCharsetSource(kCharsetUninitialized)
mIsSticky(PR_TRUE)
{
PrepareToStartLoad();
}

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

@ -515,9 +515,9 @@ void DocumentViewerImpl::PrepareToStartLoad()
// Note: operator new zeros our memory, so no need to init things to null.
DocumentViewerImpl::DocumentViewerImpl(nsIPresContext* aPresContext)
: mPresContext(aPresContext),
mHintCharsetSource(kCharsetUninitialized),
mAllowPlugins(PR_TRUE),
mIsSticky(PR_TRUE),
mHintCharsetSource(kCharsetUninitialized)
mIsSticky(PR_TRUE)
{
PrepareToStartLoad();
}