aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-01-21 02:30:50 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-21 02:32:01 +0100
commitcac7734bd0439abb40cf5bdf903335e57a0f017c (patch)
tree11a172c69bdaf1b6313cb22dbd326a0618553dc7 /src/main.cpp
parentb7519f2a9f0f1d7a166ac99764e5a8431636924a (diff)
downloadusdx-cac7734bd0439abb40cf5bdf903335e57a0f017c.tar.gz
usdx-cac7734bd0439abb40cf5bdf903335e57a0f017c.tar.xz
usdx-cac7734bd0439abb40cf5bdf903335e57a0f017c.zip
menu/application: add free to allow multiple runs
free() is used to reset the instance of this singleton, so that it gets recreated on the next access. This allows multiple creation/deletion cycles (for example in the tests).
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index a7f7e2b6..9e1ba84b 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -28,7 +28,7 @@
int main (int argc, char** argv)
{
usdx::Application::get_instance()->run();
- delete usdx::Application::get_instance();
+ usdx::Application::free();
return EXIT_SUCCESS;
}