diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-03-19 11:52:27 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-03-19 11:52:27 +0000 |
commit | 19d5cc3a6bbbd911361b7e8b956840d0189d4c2b (patch) | |
tree | 5eb8b94f7832bdbb6d21c7ded6e6da6b5f8f3464 /src/gui/setup_video.h | |
parent | 59399a274c694e9dc467149828b57f47794eeaeb (diff) | |
download | mana-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.tar.gz mana-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.tar.bz2 mana-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.tar.xz mana-19d5cc3a6bbbd911361b7e8b956840d0189d4c2b.zip |
Removed some duplicate initializations.
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r-- | src/gui/setup_video.h | 10 |
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 |