diff options
Diffstat (limited to 'src/views')
| -rw-r--r-- | src/views/dolphinnewfilemenuobserver.h | 2 | ||||
| -rw-r--r-- | src/views/dolphinview.h | 6 | ||||
| -rw-r--r-- | src/views/tooltips/dolphinfilemetadatawidget.h | 2 | ||||
| -rw-r--r-- | src/views/tooltips/tooltipmanager.h | 4 | ||||
| -rw-r--r-- | src/views/versioncontrol/versioncontrolobserver.h | 4 | ||||
| -rw-r--r-- | src/views/viewmodecontroller.h | 4 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/views/dolphinnewfilemenuobserver.h b/src/views/dolphinnewfilemenuobserver.h index b95bdac46..82f09daa2 100644 --- a/src/views/dolphinnewfilemenuobserver.h +++ b/src/views/dolphinnewfilemenuobserver.h @@ -29,7 +29,7 @@ public: void attach(const DolphinNewFileMenu* menu); void detach(const DolphinNewFileMenu* menu); -signals: +Q_SIGNALS: void itemCreated(const QUrl& url); void errorMessage(const QString& error); diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index ab3e86f15..be8263917 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -315,7 +315,7 @@ public: */ void hideToolTip(const ToolTipManager::HideBehavior behavior = ToolTipManager::HideBehavior::Later); -public slots: +public Q_SLOTS: /** * Changes the directory to \a url. If the current directory is equal to * \a url, nothing will be done (use DolphinView::reload() instead). @@ -409,7 +409,7 @@ public slots: /** Activates the view if the item list container gets focus. */ bool eventFilter(QObject* watched, QEvent* event) override; -signals: +Q_SIGNALS: /** * Is emitted if the view has been activated by e. g. a mouse click. */ @@ -600,7 +600,7 @@ protected: void hideEvent(QHideEvent* event) override; bool event(QEvent* event) override; -private slots: +private Q_SLOTS: /** * Marks the view as active (DolphinView:isActive() will return true) * and emits the 'activated' signal if it is not already active. diff --git a/src/views/tooltips/dolphinfilemetadatawidget.h b/src/views/tooltips/dolphinfilemetadatawidget.h index 87ee87a58..63a20f170 100644 --- a/src/views/tooltips/dolphinfilemetadatawidget.h +++ b/src/views/tooltips/dolphinfilemetadatawidget.h @@ -46,7 +46,7 @@ public: void setItems(const KFileItemList& items); KFileItemList items() const; -signals: +Q_SIGNALS: /** * Is emitted after the meta data has been received for the items * set by DolphinFileMetaDataWidget::setItems(). diff --git a/src/views/tooltips/tooltipmanager.h b/src/views/tooltips/tooltipmanager.h index 6dfc750a9..3688e815c 100644 --- a/src/views/tooltips/tooltipmanager.h +++ b/src/views/tooltips/tooltipmanager.h @@ -50,14 +50,14 @@ public: */ void hideToolTip(const HideBehavior behavior = HideBehavior::Later); -signals: +Q_SIGNALS: /** * Is emitted when the user clicks a tag or a link * in the metadata widget. */ void urlActivated(const QUrl& url); -private slots: +private Q_SLOTS: void startContentRetrieval(); void setPreviewPix(const KFileItem& item, const QPixmap& pix); void previewFailed(); diff --git a/src/views/versioncontrol/versioncontrolobserver.h b/src/views/versioncontrol/versioncontrolobserver.h index 5f425fe85..6e3977fb2 100644 --- a/src/views/versioncontrol/versioncontrolobserver.h +++ b/src/views/versioncontrol/versioncontrolobserver.h @@ -50,7 +50,7 @@ public: QList<QAction*> actions(const KFileItemList& items) const; -signals: +Q_SIGNALS: /** * Is emitted if an information message with the content \a msg * should be shown. @@ -69,7 +69,7 @@ signals: */ void operationCompletedMessage(const QString& msg); -private slots: +private Q_SLOTS: /** * Invokes verifyDirectory() with a small delay. If delayedDirectoryVerification() * is invoked before the delay has been exceeded, the delay will be reset. This diff --git a/src/views/viewmodecontroller.h b/src/views/viewmodecontroller.h index 31594328b..bd92a60a2 100644 --- a/src/views/viewmodecontroller.h +++ b/src/views/viewmodecontroller.h @@ -61,14 +61,14 @@ public: void setNameFilter(const QString& nameFilter); QString nameFilter() const; -public slots: +public Q_SLOTS: /** * Sets the URL to \a url and emits the signals cancelPreviews() and * urlChanged() if \a url is different for the current URL. */ void setUrl(const QUrl& url); -signals: +Q_SIGNALS: /** * Is emitted if the URL has been changed by ViewModeController::setUrl(). */ |
