diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-29 00:06:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-29 00:06:07 +0300 |
commit | 8e7abb562861d53f9aa0a4fb0ebae52adaeb17e5 (patch) | |
tree | e699cf343a6c18e7a4c71afde28dd46e85d4bd35 /src/gui/widgets/button.h | |
parent | b14dd921c74c1543d1cd75602d6666f32df518ca (diff) | |
download | plus-8e7abb562861d53f9aa0a4fb0ebae52adaeb17e5.tar.gz plus-8e7abb562861d53f9aa0a4fb0ebae52adaeb17e5.tar.bz2 plus-8e7abb562861d53f9aa0a4fb0ebae52adaeb17e5.tar.xz plus-8e7abb562861d53f9aa0a4fb0ebae52adaeb17e5.zip |
move bools in button.
Diffstat (limited to 'src/gui/widgets/button.h')
-rw-r--r-- | src/gui/widgets/button.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h index 3509aeded..4d581f80d 100644 --- a/src/gui/widgets/button.h +++ b/src/gui/widgets/button.h @@ -145,13 +145,7 @@ class Button final : public gcn::Button, static float mAlpha; std::string mDescription; - unsigned mClickCount; - int mTag; ImageCollection *mVertexes2; - bool mRedraw; - int mMode; - int mXOffset; - int mYOffset; gcn::Color mEnabledColor; gcn::Color mEnabledColor2; gcn::Color mDisabledColor; @@ -162,8 +156,14 @@ class Button final : public gcn::Button, gcn::Color mPressedColor2; Image **mImages; ImageSet *mImageSet; + unsigned mClickCount; + int mTag; + int mMode; + int mXOffset; + int mYOffset; int mImageWidth; int mImageHeight; + bool mRedraw; bool mStick; bool mPressed; }; |