┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/statusbar/statusbarspaceinfo.cpp
diff options
context:
space:
mode:
authorAlex Richardson <[email protected]>2014-04-10 03:02:10 +0200
committerAlex Richardson <[email protected]>2014-05-05 23:05:34 +0200
commit7a26fbc5c59596161b026b070e786767b94b4979 (patch)
treeb96597d65f50100795ba418f723f10e645e93c3c /src/statusbar/statusbarspaceinfo.cpp
parent05f2c9c320694ee79dd0b60b35d98003f2d8df96 (diff)
dolphin: convert statusbar, settings and search to qt5 signals/slot syntax
Diffstat (limited to 'src/statusbar/statusbarspaceinfo.cpp')
-rw-r--r--src/statusbar/statusbarspaceinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statusbar/statusbarspaceinfo.cpp b/src/statusbar/statusbarspaceinfo.cpp
index 61b28334a..82fa47143 100644
--- a/src/statusbar/statusbarspaceinfo.cpp
+++ b/src/statusbar/statusbarspaceinfo.cpp
@@ -35,7 +35,7 @@ StatusBarSpaceInfo::StatusBarSpaceInfo(QWidget* parent) :
// Use a timer to update the space information. Polling is useful
// here, as files can be deleted/added outside the scope of Dolphin.
m_timer = new QTimer(this);
- connect(m_timer, SIGNAL(timeout()), this, SLOT(calculateSpaceInfo()));
+ connect(m_timer, &QTimer::timeout, this, &StatusBarSpaceInfo::calculateSpaceInfo);
}
StatusBarSpaceInfo::~StatusBarSpaceInfo()