diff options
| author | Peter Penz <[email protected]> | 2007-06-19 19:08:49 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-06-19 19:08:49 +0000 |
| commit | a0ed7ae53d8ef463725fd07bd6acd381c979cd55 (patch) | |
| tree | 1c4a420cd4ee4513c72f34961631d043b079f29d /src/statusbarspaceinfo.cpp | |
| parent | 051f0b975d9e20e2cb47fced797726c41db635b2 (diff) | |
A cleanup in KDiskFreeSpace has been done -> adjust signal/slot to the new (and nicer) method signature
svn path=/trunk/KDE/kdebase/apps/; revision=677710
Diffstat (limited to 'src/statusbarspaceinfo.cpp')
| -rw-r--r-- | src/statusbarspaceinfo.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index 69296e7b3..eb546831b 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -111,10 +111,10 @@ void StatusBarSpaceInfo::paintEvent(QPaintEvent* /* event */) } -void StatusBarSpaceInfo::slotFoundMountPoint(const quint64& kBSize, - const quint64& kBUsed, - const quint64& kBAvailable, - const QString& mountPoint) +void StatusBarSpaceInfo::slotFoundMountPoint(const QString& mountPoint, + quint64 kBSize, + quint64 kBUsed, + quint64 kBAvailable) { Q_UNUSED(kBUsed); Q_UNUSED(mountPoint); @@ -148,14 +148,14 @@ void StatusBarSpaceInfo::refresh() return; KDiskFreeSpace* job = new KDiskFreeSpace(this); - connect(job, SIGNAL(foundMountPoint(const quint64&, - const quint64&, - const quint64&, - const QString&)), - this, SLOT(slotFoundMountPoint(const quint64&, - const quint64&, - const quint64&, - const QString&))); + connect(job, SIGNAL(foundMountPoint(const QString&, + quint64, + quint64, + quint64)), + this, SLOT(slotFoundMountPoint(const QString&, + quint64, + quint64, + quint64))); connect(job, SIGNAL(done()), this, SLOT(showResult())); |
