Reordering initialization methods #1912

This commit is contained in:
Masquara 2017-04-11 00:45:02 -04:00
parent e724b2fcdd
commit 970dd5c477
70 changed files with 207 additions and 205 deletions

View file

@ -52,8 +52,8 @@ ConsoleDocClass( GuiDecoyCtrl,
"Currently editor use only, no real application without extension.\n\n "
"@internal");
GuiDecoyCtrl::GuiDecoyCtrl() : mIsDecoy(true),
mMouseOver(false),
GuiDecoyCtrl::GuiDecoyCtrl() : mMouseOver(false),
mIsDecoy(true),
mDecoyReference(NULL)
{
}

View file

@ -32,8 +32,8 @@
GuiGameListMenuCtrl::GuiGameListMenuCtrl()
: mSelected(NO_ROW),
mHighlighted(NO_ROW),
mDebugRender(false)
mDebugRender(false),
mHighlighted(NO_ROW)
{
VECTOR_SET_ASSOCIATION(mRows);

View file

@ -237,8 +237,8 @@ GuiMLTextCtrl::GuiMLTextCtrl()
mCurY( 0 ),
mCurClipX( 0 ),
mLineAtoms( NULL ),
mLineAtomPtr( &mLineAtoms ),
mLineList( NULL ),
mLineAtomPtr( &mLineAtoms ),
mLineInsert( &mLineList ),
mScanPos( 0 ),
mCurX( 0 ),
@ -247,8 +247,8 @@ GuiMLTextCtrl::GuiMLTextCtrl()
mLineStart( 0 ),
mVertMoveAnchor( 0 ),
mVertMoveAnchorValid( false ),
mSelectionAnchor( 0 ),
mIsEditCtrl( false ),
mSelectionAnchor( 0 ),
mCursorPosition( false ),
mMaxBufferSize( -1 ),
mInitialText( StringTable->EmptyString() ),
@ -257,13 +257,13 @@ GuiMLTextCtrl::GuiMLTextCtrl()
mSelectionEnd( 0 ),
mLineSpacingPixels( 2 ),
mAllowColorChars( false ),
mUseURLMouseCursor( false ),
mBitmapList( 0 ),
mUseURLMouseCursor( false ),
mBitmapRefList( 0 ),
mDirty( true ),
mTagList( NULL ),
mHitURL( 0 ),
mDirty( true ),
mAlpha( 1.0f ),
mHitURL( 0 ),
mFontList( NULL )
{
mActive = true;

View file

@ -97,8 +97,8 @@ GuiSliderCtrl::GuiSliderCtrl()
mIncAmount( 0.f ),
mDisplayValue( false ),
mMouseOver( false ),
mMouseDragged( false ),
mDepressed( false )
mDepressed( false ),
mMouseDragged( false )
{
}