diff options
author | Alex Borisov <b0ric.alex@gmail.com> | 2012-03-24 11:41:57 +0200 |
---|---|---|
committer | Alex Borisov <b0ric.alex@gmail.com> | 2012-03-24 11:41:57 +0200 |
commit | efdd71f35935f8b14abfb26fa852bad77dbd3f9e (patch) | |
tree | 6469f2b58673cc2582382b8c7ebea63654f60f4e /client/ProxyClientApp.h | |
parent | 23f69b08e46c6101cbcba2f8c9592aa14bf1dccd (diff) |
Ticket #3 fix (tray click workaround and no windown on taskbar)
Diffstat (limited to 'client/ProxyClientApp.h')
-rw-r--r-- | client/ProxyClientApp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/ProxyClientApp.h b/client/ProxyClientApp.h index 60b8de6..cc0a7eb 100644 --- a/client/ProxyClientApp.h +++ b/client/ProxyClientApp.h @@ -23,6 +23,7 @@ public: private slots: void trayActivated(QSystemTrayIcon::ActivationReason reason); void showProxyDialog(); + void DialogClosed(int result); void configUpdated(); void quitApp(); @@ -30,6 +31,9 @@ private: QSystemTrayIcon *trayIcon; ProxyDialog *dialog; FileOpThread fileOpThread; + + // fucking tray icon workaround + quint64 closeTime; }; |