diff options
author | Max Horn | 2011-02-07 23:01:06 +0000 |
---|---|---|
committer | Max Horn | 2011-02-07 23:01:06 +0000 |
commit | 2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb (patch) | |
tree | a538852678f172dec297b83d115a7d76f2638969 /gui | |
parent | 377b4c67d99503b19e866ff47c685c57dd2a56e0 (diff) | |
download | scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.tar.gz scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.tar.bz2 scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.zip |
ALL: Fix whitespaces / indention
svn-id: r55818
Diffstat (limited to 'gui')
-rw-r--r-- | gui/widget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/widget.cpp b/gui/widget.cpp index 6b6163232f..61f4a0e249 100644 --- a/gui/widget.cpp +++ b/gui/widget.cpp @@ -215,7 +215,7 @@ uint8 Widget::parseHotkey(const Common::String &label) { Common::String Widget::cleanupHotkey(const Common::String &label) { Common::String res; - for (uint i = 0; i < label.size() ; i++) + for (uint i = 0; i < label.size(); i++) if (label[i] != '~') res = res + label[i]; |