ActivityWidget: fix compiler warnings

This commit is contained in:
Olivier Goffart 2015-11-17 09:54:38 +01:00
Родитель 486d7690c4
Коммит 11ef07c74a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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; }