summaryrefslogtreecommitdiff
path: root/client/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/main.cpp')
-rw-r--r--client/main.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/client/main.cpp b/client/main.cpp
index 0c36979..2752eff 100644
--- a/client/main.cpp
+++ b/client/main.cpp
@@ -1,13 +1,11 @@
-#include <QApplication>
+#include "ProxyClientApp.h"
#include "client.h"
-#include "proxy.h"
#include "dialog.h"
int main(int argc, char *argv[])
{
- QApplication app(argc, argv);
- ProxyDialog *dialog = new ProxyDialog;
- dialog->show();
+ Logger::Info("Starting client application\n");
+ ProxyClientApp app(argc, argv);
return app.exec();
-} \ No newline at end of file
+}