summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.h
diff options
context:
space:
mode:
authorBjörn Steinbrink <B.Steinbrink@gmx.de>2006-03-19 11:52:27 +0000
committerBjörn Steinbrink <B.Steinbrink@gmx.de>2006-03-19 11:52:27 +0000
commit19d5cc3a6bbbd911361b7e8b956840d0189d4c2b (patch)
tree5eb8b94f7832bdbb6d21c7ded6e6da6b5f8f3464 /src/gui/setup_video.h
parent59399a274c694e9dc467149828b57f47794eeaeb (diff)
downloadmana-client-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.tar.gz
mana-client-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.tar.bz2
mana-client-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.tar.xz
mana-client-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.zip
Removed some duplicate initializations.
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r--src/gui/setup_video.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h
index 4aa13fd3..d7129950 100644
--- a/src/gui/setup_video.h
+++ b/src/gui/setup_video.h
@@ -42,6 +42,11 @@ class Setup_Video : public SetupTab, public gcn::ActionListener
void action(const std::string&);
private:
+ bool mFullScreenEnabled;
+ bool mOpenGLEnabled;
+ bool mCustomCursorEnabled;
+ double mOpacity;
+
class ModeListModel *mModeListModel;
gcn::ListBox *mModeList;
@@ -49,11 +54,6 @@ class Setup_Video : public SetupTab, public gcn::ActionListener
gcn::CheckBox *mOpenGLCheckBox;
gcn::CheckBox *mCustomCursorCheckBox;
gcn::Slider *mAlphaSlider;
-
- bool mFullScreenEnabled;
- bool mOpenGLEnabled;
- bool mCustomCursorEnabled;
- double mOpacity;
};
#endif