summaryrefslogtreecommitdiff
path: root/src/gui/widgets/checkbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-07-28 23:51:38 +0300
committerAndrei Karas <akaras@inbox.ru>2013-07-28 23:51:38 +0300
commitb14dd921c74c1543d1cd75602d6666f32df518ca (patch)
treea03bb2782ccc3a623b20445367646e43747f7fd1 /src/gui/widgets/checkbox.h
parent9651fe916f2e0e91778fd18bfacbe401f99a2de6 (diff)
downloadplus-b14dd921c74c1543d1cd75602d6666f32df518ca.tar.gz
plus-b14dd921c74c1543d1cd75602d6666f32df518ca.tar.bz2
plus-b14dd921c74c1543d1cd75602d6666f32df518ca.tar.xz
plus-b14dd921c74c1543d1cd75602d6666f32df518ca.zip
move bools in checkbox.
Diffstat (limited to 'src/gui/widgets/checkbox.h')
-rw-r--r--src/gui/widgets/checkbox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/checkbox.h b/src/gui/widgets/checkbox.h
index a18079bed..408a52031 100644
--- a/src/gui/widgets/checkbox.h
+++ b/src/gui/widgets/checkbox.h
@@ -86,12 +86,12 @@ class CheckBox final : public gcn::CheckBox,
void adjustSize();
private:
- bool mHasMouse;
+ gcn::Color mForegroundColor;
int mPadding;
int mImagePadding;
int mImageSize;
int mSpacing;
- gcn::Color mForegroundColor;
+ bool mHasMouse;
static int instances;
static Skin *mSkin;