summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r--src/gui/setup.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp
index bfb619c2..6610314e 100644
--- a/src/gui/setup.cpp
+++ b/src/gui/setup.cpp
@@ -175,15 +175,3 @@ void Setup::action(const std::string& eventId)
setVisible(false);
}
}
-
-Setup *Setup::ptr = NULL;
-Setup *Setup::create_setup() {
- if (ptr == NULL) {
- ptr = new Setup();
- }
- else {
- ptr->setVisible(true);
- }
-
- return ptr;
-}