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:
authorKlaas Freitag <freitag@owncloud.com>2016-03-16 18:31:52 +0300
committerKlaas Freitag <freitag@owncloud.com>2016-03-16 18:31:52 +0300
commitf7f412007e9dd2efc47ea73052fb8237c1e4ce01 (patch)
tree6eab120febcbe1430b6df981df04aee851fd628c /src/gui/activitywidget.h
parent45c32ec0b16afaa43977cc0e64e60858b2711e72 (diff)
Activity: Some documentation and better varialbe names
Diffstat (limited to 'src/gui/activitywidget.h')
-rw-r--r--src/gui/activitywidget.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/activitywidget.h b/src/gui/activitywidget.h
index a2d5c8116..01c591433 100644
--- a/src/gui/activitywidget.h
+++ b/src/gui/activitywidget.h
@@ -90,7 +90,10 @@ private:
QMap<int, NotificationWidget*> _widgetForNotifId;
QElapsedTimer _guiLogTimer;
QSet<int> _guiLoggedNotifications;
- int _notificationRequests;
+
+ // number of currently running notification requests. If non zero,
+ // no query for notifications is started.
+ int _notificationRequestsRunning;
ActivityListModel *_model;
QVBoxLayout *_notificationsLayout;