diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 17:42:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 18:56:15 +0300 |
commit | d9994f114b1febf4c075d77c0fb3e7a44e510e20 (patch) | |
tree | 00eeae0b23ab620363dedcce448af25325b1381f /src/gui/setup_video.cpp | |
parent | d65f51b41a9d84c501bb25bc3849ffd8446fb2e6 (diff) | |
download | plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.gz plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.bz2 plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.tar.xz plus-d9994f114b1febf4c075d77c0fb3e7a44e510e20.zip |
Fix code style and some minor issues.
Diffstat (limited to 'src/gui/setup_video.cpp')
-rw-r--r-- | src/gui/setup_video.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index 2c33ba91e..f722dbae8 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -25,7 +25,6 @@ #include "client.h" #include "configuration.h" #include "game.h" -#include "graphics.h" #include "graphicsmanager.h" @@ -234,9 +233,10 @@ Setup_Video::Setup_Video(const Widget2 *const widget) : mFsCheckBox(new CheckBox(this, _("Full screen"), mFullScreenEnabled)), mCustomCursorCheckBox(new CheckBox(this, _("Custom cursor"), mCustomCursorEnabled)), - mEnableResizeCheckBox(new CheckBox(this,_("Enable resize"), mEnableResize)), - mNoFrameCheckBox(new CheckBox(this,_("No frame"), mNoFrame)), - mFpsCheckBox(new CheckBox(this,_("FPS limit:"))), + mEnableResizeCheckBox(new CheckBox(this, _("Enable resize"), + mEnableResize)), + mNoFrameCheckBox(new CheckBox(this, _("No frame"), mNoFrame)), + mFpsCheckBox(new CheckBox(this, _("FPS limit:"))), mFpsSlider(new Slider(2, 160)), mFpsLabel(new Label(this)), mAltFpsSlider(new Slider(2, 160)), |