diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-28 22:58:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-28 22:58:18 +0300 |
commit | 25f7a598965384801dfd11f3abb8dbeb0df3f078 (patch) | |
tree | 16e54c640884f766dfa4e972df8b716c0acbc565 /src/gui/widgets/progressbar.h | |
parent | 33d882f071b4445bcb41921c99be7f33217897b1 (diff) | |
download | plus-25f7a598965384801dfd11f3abb8dbeb0df3f078.tar.gz plus-25f7a598965384801dfd11f3abb8dbeb0df3f078.tar.bz2 plus-25f7a598965384801dfd11f3abb8dbeb0df3f078.tar.xz plus-25f7a598965384801dfd11f3abb8dbeb0df3f078.zip |
move bools in progressbar.
Diffstat (limited to 'src/gui/widgets/progressbar.h')
-rw-r--r-- | src/gui/widgets/progressbar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/progressbar.h b/src/gui/widgets/progressbar.h index c1cd2afb7..1807324ed 100644 --- a/src/gui/widgets/progressbar.h +++ b/src/gui/widgets/progressbar.h @@ -141,24 +141,24 @@ class ProgressBar final : public gcn::Widget, Skin *mSkin; float mProgress; float mProgressToGo; - bool mSmoothProgress; - int mProgressPalette; /** < Entry in ProgressPalette or -1 for none. */ gcn::Color mColor; gcn::Color mColorToGo; - bool mSmoothColorChange; + gcn::Color mOutlineColor; std::string mText; ImageCollection *mVertexes; - bool mRedraw; + int mProgressPalette; /** < Entry in ProgressPalette or -1 for none. */ unsigned int mPadding; unsigned int mFillPadding; - gcn::Color mOutlineColor; static int mInstances; static float mAlpha; - static const gcn::Color TEXT_COLOR; + + bool mSmoothProgress; + bool mSmoothColorChange; + bool mRedraw; }; #endif // GUI_WIDGETS_PROGRESSBAR_H |