diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-10 12:23:50 -0600 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-10 12:43:02 -0600 |
commit | 75fc8e62d25ff1d39408588f76d95df4a9a7e663 (patch) | |
tree | baea474d54281912dfec08d75319a4a09f4e03bd /src/gui/setup.h | |
parent | 0540c611b48fd8dee14066b13755138192b7084b (diff) | |
download | mana-75fc8e62d25ff1d39408588f76d95df4a9a7e663.tar.gz mana-75fc8e62d25ff1d39408588f76d95df4a9a7e663.tar.bz2 mana-75fc8e62d25ff1d39408588f76d95df4a9a7e663.tar.xz mana-75fc8e62d25ff1d39408588f76d95df4a9a7e663.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 9f1bafc7..d798162c 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -32,6 +32,7 @@ #include "../guichanfwd.h" class SetupTab; +class Button; /** * The setup dialog. @@ -51,6 +52,8 @@ class Setup : public Window, public gcn::ActionListener */ ~Setup(); + void setInGame(bool inGame); + /** * Event handling method. */ @@ -58,6 +61,7 @@ class Setup : public Window, public gcn::ActionListener private: std::list<SetupTab*> mTabs; + gcn::Button *mResetWindows; }; #endif |