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/statusbar | |
| parent | 7dc863add76dd31f162487487257225a0b4f1fd3 (diff) | |
Build with QT_NO_KEYWORDS
Diffstat (limited to 'src/statusbar')
| -rw-r--r-- | src/statusbar/dolphinstatusbar.h | 6 | ||||
| -rw-r--r-- | src/statusbar/mountpointobserver.h | 6 | ||||
| -rw-r--r-- | src/statusbar/mountpointobservercache.h | 2 | ||||
| -rw-r--r-- | src/statusbar/spaceinfoobserver.h | 6 | ||||
| -rw-r--r-- | src/statusbar/statusbarspaceinfo.h | 2 |
5 files changed, 11 insertions, 11 deletions
diff --git a/src/statusbar/dolphinstatusbar.h b/src/statusbar/dolphinstatusbar.h index 30968be6e..7b4434539 100644 --- a/src/statusbar/dolphinstatusbar.h +++ b/src/statusbar/dolphinstatusbar.h @@ -79,12 +79,12 @@ public: */ void updateSpaceInfo(); -public slots: +public Q_SLOTS: void setText(const QString& text); void setUrl(const QUrl& url); void setZoomLevel(int zoomLevel); -signals: +Q_SIGNALS: /** * Is emitted if the stop-button has been pressed during showing a progress. */ @@ -95,7 +95,7 @@ signals: protected: void contextMenuEvent(QContextMenuEvent* event) override; -private slots: +private Q_SLOTS: void showZoomSliderToolTip(int zoomLevel); void updateProgressInfo(); diff --git a/src/statusbar/mountpointobserver.h b/src/statusbar/mountpointobserver.h index 30d5f8f7d..9f5346d49 100644 --- a/src/statusbar/mountpointobserver.h +++ b/src/statusbar/mountpointobserver.h @@ -68,20 +68,20 @@ public: */ static MountPointObserver* observerForUrl(const QUrl& url); -signals: +Q_SIGNALS: /** * This signal is emitted when the size has been retrieved. */ void spaceInfoChanged(quint64 size, quint64 available); -public slots: +public Q_SLOTS: /** * If this slot is invoked, MountPointObserver starts a new driveSize job * to get the drive's size. */ void update(); -private slots: +private Q_SLOTS: void freeSpaceResult(KIO::Job* job, KIO::filesize_t size, KIO::filesize_t available); private: diff --git a/src/statusbar/mountpointobservercache.h b/src/statusbar/mountpointobservercache.h index aeb117cbb..ab16fa760 100644 --- a/src/statusbar/mountpointobservercache.h +++ b/src/statusbar/mountpointobservercache.h @@ -28,7 +28,7 @@ public: */ MountPointObserver* observerForUrl(const QUrl& url); -private slots: +private Q_SLOTS: /** * Removes the given \a observer from the cache. */ diff --git a/src/statusbar/spaceinfoobserver.h b/src/statusbar/spaceinfoobserver.h index ac55a9f49..4f3ecde35 100644 --- a/src/statusbar/spaceinfoobserver.h +++ b/src/statusbar/spaceinfoobserver.h @@ -27,16 +27,16 @@ public: void setUrl(const QUrl& url); -public slots: +public Q_SLOTS: void update(); -signals: +Q_SIGNALS: /** * This signal is emitted when the size or available space changes. */ void valuesChanged(); -private slots: +private Q_SLOTS: void spaceInfoChanged(quint64 size, quint64 available); private: diff --git a/src/statusbar/statusbarspaceinfo.h b/src/statusbar/statusbarspaceinfo.h index 7cc5c49e2..5b16942a4 100644 --- a/src/statusbar/statusbarspaceinfo.h +++ b/src/statusbar/statusbarspaceinfo.h @@ -42,7 +42,7 @@ protected: void hideEvent(QHideEvent* event) override; void mousePressEvent(QMouseEvent* event) override; -private slots: +private Q_SLOTS: void slotValuesChanged(); private: |
