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:
authorChristian Kamm <kamm@incasoftware.de>2014-09-17 13:41:04 +0400
committerChristian Kamm <kamm@incasoftware.de>2014-09-17 13:41:04 +0400
commitece11dc3d8c906dddf45987cb636e725c5a138fa (patch)
tree6f774bd3b721fd42bc41fba9a4cc19793daa5706 /src/gui/updater/ocupdater.h
parent6e42ee1bd4500060423c0c50f5d7a745b09fc1cc (diff)
Updater: Add "didn't check for updates" message. #2175
Don't show "Checking server..." when we are not.
Diffstat (limited to 'src/gui/updater/ocupdater.h')
-rw-r--r--src/gui/updater/ocupdater.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/updater/ocupdater.h b/src/gui/updater/ocupdater.h
index 1041517bc..3201e7c81 100644
--- a/src/gui/updater/ocupdater.h
+++ b/src/gui/updater/ocupdater.h
@@ -33,7 +33,8 @@ class OCUpdater : public QObject, public Updater
{
Q_OBJECT
public:
- enum DownloadState { Unknown = 0, UpToDate, Downloading, DownloadComplete,
+ enum DownloadState { Unknown = 0, CheckingServer, UpToDate,
+ Downloading, DownloadComplete,
DownloadFailed, DownloadTimedOut,
UpdateOnlyAvailableThroughSystem };
explicit OCUpdater(const QUrl &url, QObject *parent = 0);