aboutsummaryrefslogtreecommitdiff
path: root/gui/widget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/widget.cpp')
-rw-r--r--gui/widget.cpp2
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];