Reordering initialization methods #1912

This commit is contained in:
Masquara 2017-04-11 00:45:02 -04:00
parent 6423ab50b1
commit 15f67015d3
70 changed files with 207 additions and 205 deletions

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;