diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-02 05:11:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-02 05:11:50 +0300 |
commit | f498d80c587033bffb9abedb2b0827ad8d4a2a32 (patch) | |
tree | 82da8928768b2159c199c2d033388a071f228582 /src/gui/setup.cpp | |
parent | 1ba44aeb62414ea349e462b6d4fccbaac00be115 (diff) | |
download | plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.tar.gz plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.tar.bz2 plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.tar.xz plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.zip |
Add some checks after automatic checking.
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r-- | src/gui/setup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index bac474950..3408fba33 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -75,7 +75,7 @@ Setup::Setup(): nullptr }; int x = width; - for (const char **curBtn = buttonNames; *curBtn; ++curBtn) + for (const char **curBtn = buttonNames; *curBtn; ++ curBtn) { Button *btn = new Button(gettext(*curBtn), *curBtn, this); x -= btn->getWidth() + 5; |