summaryrefslogtreecommitdiff
path: root/src/gui/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r--src/gui/setup.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h
index d94069a9..b6b83717 100644
--- a/src/gui/setup.h
+++ b/src/gui/setup.h
@@ -19,15 +19,17 @@ class Setup : public Window, public gcn::ActionListener {
gcn::Label *displayLabel;
gcn::Button *applyButton;
gcn::Button *cancelButton;
+
+ /* Setup dialog */
+ static Setup *ptr;
- public:
+ /* Methods */
Setup(gcn::Container *parent);
- ~Setup();
+ virtual ~Setup();
+ public:
void action(const std::string& eventId);
-
+ static Setup * create_setup();
};
-void create_setup();
-
#endif