diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-28 23:17:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-28 23:17:09 +0300 |
commit | 4672d4cbf51156d3225110aa9bf47703df68fe49 (patch) | |
tree | 6ba466e3af83c56c832c1b08e37af54e94fe487f /src/gui/widgets/textfield.h | |
parent | e452560778b5b5966986cbdf16983f7defa8f2ab (diff) | |
download | plus-4672d4cbf51156d3225110aa9bf47703df68fe49.tar.gz plus-4672d4cbf51156d3225110aa9bf47703df68fe49.tar.bz2 plus-4672d4cbf51156d3225110aa9bf47703df68fe49.tar.xz plus-4672d4cbf51156d3225110aa9bf47703df68fe49.zip |
move bools in textfield.
Diffstat (limited to 'src/gui/widgets/textfield.h')
-rw-r--r-- | src/gui/widgets/textfield.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/textfield.h b/src/gui/widgets/textfield.h index 5e1553acd..8990730ba 100644 --- a/src/gui/widgets/textfield.h +++ b/src/gui/widgets/textfield.h @@ -140,18 +140,18 @@ class TextField : public gcn::TextField, static Skin *mSkin; private: + const gcn::Color *mCaretColor; + gcn::Color mForegroundColor2; + PopupMenu *mPopupMenu; static int instances; static float mAlpha; static ImageRect skin; - bool mNumeric; int mMinimum; - unsigned mMaximum; - bool mLoseFocusOnTab; + unsigned int mMaximum; int mLastEventPaste; int mPadding; - const gcn::Color *mCaretColor; - gcn::Color mForegroundColor2; - PopupMenu *mPopupMenu; + bool mNumeric; + bool mLoseFocusOnTab; }; #endif // GUI_WIDGETS_TEXTFIELD_H |