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:
authorPhil Davis <phil.davis@inf.org>2015-10-05 07:21:19 +0300
committerPhil Davis <phil.davis@inf.org>2015-10-05 07:21:19 +0300
commitb8ccbbc72a183becc9c6d372297b851e0cd39161 (patch)
treeb7a6069ecfd6990c4344fe3e07f147c7ae85e5a6 /src/gui/quotainfo.h
parentb09f1d591c2dd5e056ac0f807a2058dbc1d278e1 (diff)
GUI comment and message typos for master
Diffstat (limited to 'src/gui/quotainfo.h')
-rw-r--r--src/gui/quotainfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/quotainfo.h b/src/gui/quotainfo.h
index 294ad6de5..b9ada1a2c 100644
--- a/src/gui/quotainfo.h
+++ b/src/gui/quotainfo.h
@@ -29,7 +29,7 @@ class PropfindJob;
*
* It is typically owned by the AccountSetting page.
*
- * The quota is requested if those 3 conditions are met:
+ * The quota is requested if these 3 conditions are met:
* - This object is active via setActive() (typically if the settings page is visible.)
* - The account is connected.
* - Every 30 seconds (defaultIntervalT) or 5 seconds in case of failure (failIntervalT)
@@ -52,7 +52,7 @@ public:
/**
* When the quotainfo is active, it requests the quota at regular interval.
- * When setting it to active it will request the quota imediatly if the last time
+ * When setting it to active it will request the quota immediately if the last time
* the quota was requested was more than the interval
*/
void setActive(bool active);
@@ -75,7 +75,7 @@ private:
qint64 _lastQuotaTotalBytes;
qint64 _lastQuotaUsedBytes;
QTimer _jobRestartTimer;
- QDateTime _lastQuotaRecieved; // the time at which de quota was recieved last
+ QDateTime _lastQuotaRecieved; // the time at which the quota was received last
bool _active; // if we should check at regular interval (when the UI is visible)
QPointer<PropfindJob> _job; // the currently running job
};