mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-10 22:24:33 +00:00
Reordering initialization methods #1912
This commit is contained in:
parent
e724b2fcdd
commit
970dd5c477
70 changed files with 207 additions and 205 deletions
|
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,8 +32,8 @@
|
|||
|
||||
GuiGameListMenuCtrl::GuiGameListMenuCtrl()
|
||||
: mSelected(NO_ROW),
|
||||
mHighlighted(NO_ROW),
|
||||
mDebugRender(false)
|
||||
mDebugRender(false),
|
||||
mHighlighted(NO_ROW)
|
||||
{
|
||||
VECTOR_SET_ASSOCIATION(mRows);
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -97,8 +97,8 @@ GuiSliderCtrl::GuiSliderCtrl()
|
|||
mIncAmount( 0.f ),
|
||||
mDisplayValue( false ),
|
||||
mMouseOver( false ),
|
||||
mMouseDragged( false ),
|
||||
mDepressed( false )
|
||||
mDepressed( false ),
|
||||
mMouseDragged( false )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue