diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-18 23:29:48 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-18 16:09:53 -0700 |
commit | 640b37b66712d22afd5c453f6aebc4abf7dcd442 (patch) | |
tree | a2c00b2ace9c8e146ef3433916da449d396e34b0 /src/gui/setuptab.h | |
parent | 7b38f31192be70463cfa1fa6f0ffe13181fc26a9 (diff) | |
download | mana-640b37b66712d22afd5c453f6aebc4abf7dcd442.tar.gz mana-640b37b66712d22afd5c453f6aebc4abf7dcd442.tar.bz2 mana-640b37b66712d22afd5c453f6aebc4abf7dcd442.tar.xz mana-640b37b66712d22afd5c453f6aebc4abf7dcd442.zip |
Fixed layout of video setup page when translated
Introduced a LayoutHelper class which can be used for any non-Window
container where you want to use a layout to place child widgets.
Diffstat (limited to 'src/gui/setuptab.h')
-rw-r--r-- | src/gui/setuptab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setuptab.h b/src/gui/setuptab.h index 6c276c35..9e668a20 100644 --- a/src/gui/setuptab.h +++ b/src/gui/setuptab.h @@ -27,8 +27,8 @@ class SetupTab : public GCContainer { public: - virtual void apply() =0; - virtual void cancel() =0; + virtual void apply() = 0; + virtual void cancel() = 0; }; #endif |