Bug 206287 things Will be re-ordered to match declaration order

r=roc+moz sr=roc+moz a=roc+moz


git-svn-id: svn://10.0.0.236/trunk@142636 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org
2003-05-20 02:02:56 +00:00
parent 7dd83a34e4
commit 73b4b6518b
6 changed files with 14 additions and 8 deletions

View File

@@ -197,8 +197,11 @@ NS_IMETHODIMP nsLeafAccessible::GetAccChildCount(PRInt32 *_retval)
// nsLinkableAccessible
//----------------
nsLinkableAccessible::nsLinkableAccessible(nsIDOMNode* aNode, nsIWeakReference* aShell):
nsAccessibleWrap(aNode, aShell), mIsALinkCached(PR_FALSE), mLinkContent(nsnull), mIsLinkVisited(PR_FALSE)
nsLinkableAccessible::nsLinkableAccessible(nsIDOMNode* aNode, nsIWeakReference* aShell) :
nsAccessibleWrap(aNode, aShell),
mLinkContent(nsnull),
mIsALinkCached(PR_FALSE),
mIsLinkVisited(PR_FALSE)
{
}

View File

@@ -153,11 +153,11 @@ nsEditor::nsEditor()
, mAction(nsnull)
, mDirection(eNone)
, mInIMEMode(PR_FALSE)
, mIsIMEComposing(PR_FALSE)
, mIMETextRangeList(nsnull)
, mIMETextNode(nsnull)
, mIMETextOffset(0)
, mIMEBufferLength(0)
, mIsIMEComposing(PR_FALSE)
, mActionListeners(nsnull)
, mEditorObservers(nsnull)
, mDocDirtyState(-1)

View File

@@ -92,7 +92,8 @@ nsIAtom* nsProfileDirServiceProvider::sApp_MessengerFolderCache50;
//*****************************************************************************
nsProfileDirServiceProvider::nsProfileDirServiceProvider(PRBool aNotifyObservers) :
mNotifyObservers(aNotifyObservers), mProfileDirLock(nsnull),
mProfileDirLock(nsnull),
mNotifyObservers(aNotifyObservers),
mSharingEnabled(PR_FALSE)
{
}

View File

@@ -53,7 +53,9 @@
extern PRLogModuleInfo *nsComponentManagerLog;
nsNativeComponentLoader::nsNativeComponentLoader() :
mCompMgr(nsnull), mDllStore(nsnull), mLoadedDependentLibs(nsnull)
mCompMgr(nsnull),
mLoadedDependentLibs(nsnull),
mDllStore(nsnull)
{
}

View File

@@ -73,9 +73,9 @@
nsDll::nsDll(nsIFile *dllSpec, nsNativeComponentLoader *loader)
: m_dllSpec(do_QueryInterface(dllSpec)),
m_loader(loader),
m_instance(NULL),
m_moduleObject(NULL),
m_loader(loader),
m_markForUnload(PR_FALSE)
{
NS_ASSERTION(loader, "Null loader when creating a nsDLL");

View File

@@ -147,12 +147,12 @@ nsInstallInfo::nsInstallInfo(PRUint32 aInstallType,
PRUint32 flags,
nsIXPIListener* aListener,
nsIXULChromeRegistry* aChromeRegistry)
: mError(0),
: mPrincipal(aPrincipal),
mError(0),
mType(aInstallType),
mFlags(flags),
mURL(aURL),
mArgs(aArgs),
mPrincipal(aPrincipal),
mFile(aFile),
mListener(aListener),
mChromeRegistry(aChromeRegistry)