diff options
| author | Nicolas Fella <[email protected]> | 2021-02-08 23:09:59 +0100 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2021-02-09 20:39:50 +0000 |
| commit | f65b0899c3666561cafac14f67ab0bb8a5bfa00a (patch) | |
| tree | 0215aa223236bc85b739cecf9bfd47f4832f2cf8 /src/panels/places | |
| parent | 7dc863add76dd31f162487487257225a0b4f1fd3 (diff) | |
Build with QT_NO_KEYWORDS
Diffstat (limited to 'src/panels/places')
| -rw-r--r-- | src/panels/places/placesitemmodel.h | 4 | ||||
| -rw-r--r-- | src/panels/places/placesitemsignalhandler.h | 4 | ||||
| -rw-r--r-- | src/panels/places/placespanel.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/panels/places/placesitemmodel.h b/src/panels/places/placesitemmodel.h index 2b1f3bc14..cd4079a73 100644 --- a/src/panels/places/placesitemmodel.h +++ b/src/panels/places/placesitemmodel.h @@ -125,7 +125,7 @@ public: bool isGroupHidden(KFilePlacesModel::GroupType type) const; void setGroupHidden(KFilePlacesModel::GroupType type, bool hidden); -signals: +Q_SIGNALS: void errorMessage(const QString& message); void storageSetupDone(int index, bool success); void storageTearDownRequested(const QString& mountPath); @@ -137,7 +137,7 @@ protected: void onItemRemoved(int index, KStandardItem* removedItem) override; void onItemChanged(int index, const QSet<QByteArray>& changedRoles) override; -private slots: +private Q_SLOTS: void slotStorageTearDownDone(Solid::ErrorType error, const QVariant& errorData); void slotStorageSetupDone(Solid::ErrorType error, const QVariant& errorData, const QString& udi); diff --git a/src/panels/places/placesitemsignalhandler.h b/src/panels/places/placesitemsignalhandler.h index d0e236af4..da4783915 100644 --- a/src/panels/places/placesitemsignalhandler.h +++ b/src/panels/places/placesitemsignalhandler.h @@ -37,7 +37,7 @@ public: explicit PlacesItemSignalHandler(PlacesItem* item, QObject* parent = nullptr); ~PlacesItemSignalHandler() override; -public slots: +public Q_SLOTS: /** * Calls PlacesItem::onAccessibilityChanged() */ @@ -47,7 +47,7 @@ public slots: void onTrashEmptinessChanged(bool isTrashEmpty); -signals: +Q_SIGNALS: void tearDownExternallyRequested(const QString& udi); private: diff --git a/src/panels/places/placespanel.h b/src/panels/places/placespanel.h index 67b484c65..39f8da365 100644 --- a/src/panels/places/placespanel.h +++ b/src/panels/places/placespanel.h @@ -33,7 +33,7 @@ public: bool eventFilter(QObject *obj, QEvent *event) override; -signals: +Q_SIGNALS: void placeActivated(const QUrl& url); void placeMiddleClicked(const QUrl& url); void errorMessage(const QString& error); @@ -46,12 +46,12 @@ protected: bool urlChanged() override; void showEvent(QShowEvent* event) override; -public slots: +public Q_SLOTS: void readSettings() override; void showHiddenEntries(bool shown); int hiddenListCount(); -private slots: +private Q_SLOTS: void slotItemActivated(int index); void slotItemMiddleClicked(int index); void slotItemContextMenuRequested(int index, const QPointF& pos); |
