}
-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);
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()));
* bug (?). More details are given inside the class KDiskFreeSp (see
* KDE Libs documentation).
*/
- void slotFoundMountPoint(const unsigned long& kBSize,
- const unsigned long& kBUsed,
- const unsigned long& kBAvailable,
+ void slotFoundMountPoint(const quint64& kBSize,
+ const quint64& kBUsed,
+ const quint64& kBAvailable,
const QString& mountPoint);
void showResult();
private:
KUrl m_url;
bool m_gettingSize;
- unsigned long m_kBSize;
- unsigned long m_kBAvailable;
+ quint64 m_kBSize;
+ quint64 m_kBAvailable;
};
#endif