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>2015-11-17 11:54:38 +0300
committerOlivier Goffart <ogoffart@woboq.com>2015-11-17 11:54:38 +0300
commit11ef07c74a632dee34d8a1124c05ffaa992ecb88 (patch)
treec379d67e4049a60bc1d5c2624c3b2fbcbbaa5f2f /src/gui/activitywidget.h
parent486d7690c42c91f352f025266ccf246c5beb4144 (diff)
ActivityWidget: fix compiler warnings
Diffstat (limited to 'src/gui/activitywidget.h')
-rw-r--r--src/gui/activitywidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/activitywidget.h b/src/gui/activitywidget.h
index df5e73c65..441ae3142 100644
--- a/src/gui/activitywidget.h
+++ b/src/gui/activitywidget.h
@@ -101,8 +101,8 @@ public:
QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE;
int rowCount(const QModelIndex& parent = QModelIndex()) const Q_DECL_OVERRIDE;
- bool canFetchMore(const QModelIndex& ) const;
- void fetchMore(const QModelIndex&);
+ bool canFetchMore(const QModelIndex& ) const Q_DECL_OVERRIDE;
+ void fetchMore(const QModelIndex&) Q_DECL_OVERRIDE;
ActivityList activityList() { return _finalList; }