┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/statusbar
diff options
context:
space:
mode:
Diffstat (limited to 'src/statusbar')
-rw-r--r--src/statusbar/dolphinstatusbar.h6
-rw-r--r--src/statusbar/mountpointobserver.h6
-rw-r--r--src/statusbar/mountpointobservercache.h2
-rw-r--r--src/statusbar/spaceinfoobserver.h6
-rw-r--r--src/statusbar/statusbarspaceinfo.h2
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: