aboutsummaryrefslogtreecommitdiff
path: root/gui/newgui.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/newgui.h')
-rw-r--r--gui/newgui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/newgui.h b/gui/newgui.h
index 09ccd612b2..bba7806c69 100644
--- a/gui/newgui.h
+++ b/gui/newgui.h
@@ -57,7 +57,7 @@ public:
bool empty() const { return _size <= 0; }
void push(Dialog *d) { _stack[_size++] = d; }
- Dialog *top() const { return _stack[_size-1]; }
+ Dialog *top() const { return _stack[_size - 1]; }
void pop() { if (_size > 0) _stack[--_size] = 0; }
int size() const { return _size; }
Dialog *operator [](int i) { return _stack[i]; }