summaryrefslogtreecommitdiff
path: root/src/gui/setup.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-10 12:23:50 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-10 12:23:50 -0600
commit17f9d5abcb05da185486ccfba293f3a8c9eab437 (patch)
tree7545a7bdd3acefc1ff92f345416872c896b90ddb /src/gui/setup.h
parent4a08d3b4bec3fa0fc1878140b0f14c8b38d6420b (diff)
downloadMana-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.h4
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