From 21ad7eac963bc329395fa893300fb5c8f721fd77 Mon Sep 17 00:00:00 2001 From: Alex Borisov Date: Sun, 23 Oct 2011 04:10:55 +0300 Subject: Logging facility, Config class, tray icon, custom QApplication subclass --- client/main.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'client/main.cpp') 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 +#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 +} -- cgit v1.2.3