diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-18 23:29:48 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-18 23:33:30 +0100 |
commit | 9e29e1fd328304c2852c456e38fcb5da6421be96 (patch) | |
tree | 42bcfa14290fbf9c8f01d8f48254f1c229c5f03e /src/gui/setuptab.h | |
parent | a10cebb21bdd211716628039b406362f2168c852 (diff) | |
download | mana-9e29e1fd328304c2852c456e38fcb5da6421be96.tar.gz mana-9e29e1fd328304c2852c456e38fcb5da6421be96.tar.bz2 mana-9e29e1fd328304c2852c456e38fcb5da6421be96.tar.xz mana-9e29e1fd328304c2852c456e38fcb5da6421be96.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 |