Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2014-04-19 11:45:54 +0400
committerOlivier Goffart <ogoffart@woboq.com>2014-04-19 11:49:52 +0400
commitb08284e4ccf8e134fce9b2b5e86679b06ee90cc5 (patch)
treecb9dad5af77eccfd2a641034f027c94ef520994b /src/mirall/application.h
parent4731b506e5195e418fad428d57ae6c4a8548db49 (diff)
Fix the background check job for the connection
We can't use the quota job for that as it needs the credidentials and therefore may re-enter the credidential code when we are currently trying to fetch the credentials. The quotainfo.cpp part of this patch is basically a revert of d836b8015353c18c733d33b410d36a25c7201acd
Diffstat (limited to 'src/mirall/application.h')
-rw-r--r--src/mirall/application.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mirall/application.h b/src/mirall/application.h
index 95939e863..2acffbb24 100644
--- a/src/mirall/application.h
+++ b/src/mirall/application.h
@@ -18,6 +18,7 @@
#include <QApplication>
#include <QPointer>
#include <QQueue>
+#include <QTimer>
#include "qtsingleapplication.h"
@@ -103,6 +104,8 @@ private:
ClientProxy _proxy;
+ QTimer _checkConnectionTimer;
+
friend class ownCloudGui; // for _startupNetworkError
};