diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-06-14 13:50:13 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-14 14:06:28 -0700 |
commit | b5eb66545b4c28809610d0778b9a797da9dda002 (patch) | |
tree | efd7b4c175a7dc5f3454078fe668b85baecf1d6e /qt-ui/subsurfacewebservices.h | |
parent | 8f7a4a1a97629f29e054a9a2204bfffa558e1121 (diff) | |
download | subsurface-b5eb66545b4c28809610d0778b9a797da9dda002.tar.gz |
Cloud storage: clean up handling of cloud storage account
Correctly tracking the status of our authentication with the cloud service
is non-trivial, especially since the user may quit Subsurface between
registering and verifying an account, they might even register on one
machine and verify on another.
This tries to make sure that when in doubt we check with the cloud service
backend. And we show errors in the UI.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/subsurfacewebservices.h')
-rw-r--r-- | qt-ui/subsurfacewebservices.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/subsurfacewebservices.h b/qt-ui/subsurfacewebservices.h index d08f64aa8..43d1a8add 100644 --- a/qt-ui/subsurfacewebservices.h +++ b/qt-ui/subsurfacewebservices.h @@ -117,7 +117,7 @@ public: QNetworkReply* authenticate(QString email, QString password, QString pin = ""); explicit CloudStorageAuthenticate(QObject *parent); signals: - void finishedAuthenticate(bool toggle); + void finishedAuthenticate(); private slots: void uploadError(QNetworkReply::NetworkError error); |