}
-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);
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()));
virtual void paintEvent(QPaintEvent* event);
private slots:
- /**
- * The strange signature of this method is due to a compiler
- * bug (?). More details are given inside the class KDiskFreeSp (see
- * KDE Libs documentation).
- */
- void slotFoundMountPoint(const quint64& kBSize,
- const quint64& kBUsed,
- const quint64& kBAvailable,
- const QString& mountPoint);
+ void slotFoundMountPoint(const QString& mountPoint,
+ quint64 kBSize,
+ quint64 kBUsed,
+ quint64 kBAvailable);
void showResult();
/** Refreshs the space information for the current set URL. */