diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-10 12:23:50 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-10 12:23:50 -0600 |
commit | 17f9d5abcb05da185486ccfba293f3a8c9eab437 (patch) | |
tree | 7545a7bdd3acefc1ff92f345416872c896b90ddb /src/gui/setup.h | |
parent | 4a08d3b4bec3fa0fc1878140b0f14c8b38d6420b (diff) | |
download | mana-17f9d5abcb05da185486ccfba293f3a8c9eab437.tar.gz mana-17f9d5abcb05da185486ccfba293f3a8c9eab437.tar.bz2 mana-17f9d5abcb05da185486ccfba293f3a8c9eab437.tar.xz mana-17f9d5abcb05da185486ccfba293f3a8c9eab437.zip |
Fix some mem leaks
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r-- | src/gui/setup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h index e4eb0902..075c88bf 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -31,6 +31,7 @@ #include "../guichanfwd.h" class SetupTab; +class Button; /** * The setup dialog. @@ -50,6 +51,8 @@ class Setup : public Window, public gcn::ActionListener */ ~Setup(); + void setInGame(bool inGame); + /** * Event handling method. */ @@ -57,6 +60,7 @@ class Setup : public Window, public gcn::ActionListener private: std::list<SetupTab*> mTabs; + gcn::Button *mResetWindows; }; #endif |