diff --git a/src/services/abstract/feed.h b/src/services/abstract/feed.h index 178fb94a7..a48c04b9e 100755 --- a/src/services/abstract/feed.h +++ b/src/services/abstract/feed.h @@ -85,13 +85,13 @@ class Feed : public RootItem, public QRunnable { void updateCounts(bool including_total_count); int updateMessages(const QList &messages, bool error_during_obtaining); + signals: + void messagesObtained(QList messages, bool error_during_obtaining); + private: // Performs synchronous obtaining of new messages for this feed. virtual QList obtainNewMessages(bool *error_during_obtaining) = 0; - signals: - void messagesObtained(QList messages, bool error_during_obtaining); - private: QString m_url; Status m_status;