diff options
| author | Aleix Pol <aleixpol@kde.org> | 2015-09-21 16:20:52 (GMT) |
|---|---|---|
| committer | Aleix Pol <aleixpol@kde.org> | 2015-09-21 16:20:52 (GMT) |
| commit | 7e4aaa62867a7fd4ce7de41b15d458d55a69af87 (patch) | |
| tree | d5c5a984562711dededf56c8d44b964152049919 | |
| parent | caa3c95cd177ebc749565fffdd8a28ec66dea999 (diff) | |
unify private slots
| -rw-r--r-- | libmuon/resources/ResourcesUpdatesModel.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libmuon/resources/ResourcesUpdatesModel.h b/libmuon/resources/ResourcesUpdatesModel.h index f206868..eb7dca1 100644 --- a/libmuon/resources/ResourcesUpdatesModel.h +++ b/libmuon/resources/ResourcesUpdatesModel.h @@ -78,6 +78,9 @@ class MUONCOMMON_EXPORT ResourcesUpdatesModel : public QStandardItemModel private slots: void updaterDestroyed(QObject* obj); + void message(const QString& msg); + void addNewBackends(); + void slotProgressingChanged(bool progressing); private: void setResourcesModel(ResourcesModel* model); @@ -86,11 +89,6 @@ class MUONCOMMON_EXPORT ResourcesUpdatesModel : public QStandardItemModel QVector<AbstractBackendUpdater*> m_updaters; bool m_lastIsProgressing; QDBusInterface * m_kded; - - private slots: - void message(const QString& msg); - void addNewBackends(); - void slotProgressingChanged(bool progressing); }; #endif // RESOURCESUPDATESMODEL_H |
