diff options
Diffstat (limited to 'src/statusbarspaceinfo.cpp')
| -rw-r--r-- | src/statusbarspaceinfo.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index bb0ed712a..62b46700a 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -111,9 +111,9 @@ void StatusBarSpaceInfo::paintEvent(QPaintEvent* /* event */) } -void StatusBarSpaceInfo::slotFoundMountPoint(const unsigned long& kBSize, - const unsigned long& kBUsed, - const unsigned long& kBAvailable, +void StatusBarSpaceInfo::slotFoundMountPoint(const quint64& kBSize, + const quint64& kBUsed, + const quint64& kBAvailable, const QString& mountPoint) { Q_UNUSED(kBUsed); @@ -147,13 +147,13 @@ void StatusBarSpaceInfo::refresh() return; KDiskFreeSpace* job = new KDiskFreeSpace(this); - connect(job, SIGNAL(foundMountPoint(const unsigned long&, - const unsigned long&, - const unsigned long&, + connect(job, SIGNAL(foundMountPoint(const quint64&, + const quint64&, + const quint64&, const QString&)), - this, SLOT(slotFoundMountPoint(const unsigned long&, - const unsigned long&, - const unsigned long&, + this, SLOT(slotFoundMountPoint(const quint64&, + const quint64&, + const quint64&, const QString&))); connect(job, SIGNAL(done()), this, SLOT(showResult())); |
