summaryrefslogtreecommitdiff
path: root/client/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/main.cpp')
-rwxr-xr-x[-rw-r--r--]client/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/main.cpp b/client/main.cpp
index b627b15..d5a8bcc 100644..100755
--- a/client/main.cpp
+++ b/client/main.cpp
@@ -3,9 +3,11 @@
#include "client.h"
#include "Dialog.h"
+ProxyClientApp *this_app;
+
int main(int argc, char *argv[])
{
Logger::Info("Starting client application\n");
- ProxyClientApp app(argc, argv);
- return app.exec();
+ this_app = new ProxyClientApp(argc, argv);
+ return this_app->exec();
}