diff options
| author | Jeff Mitchell <[email protected]> | 2008-03-28 01:24:50 +0000 |
|---|---|---|
| committer | Jeff Mitchell <[email protected]> | 2008-03-28 01:24:50 +0000 |
| commit | 1fed8b968cdf4e3dd9d5d9c10843a155e06ce172 (patch) | |
| tree | 5fd6e591d1230392a73c41e757eaa0820ae22cd2 | |
| parent | 994e0570eec41e639044b74c97898ee4aadffe32 (diff) | |
Revert back to kibibytes for now
svn path=/trunk/KDE/kdebase/apps/; revision=791031
| -rw-r--r-- | src/statusbarspaceinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index d30e995a2..8ee98a3d0 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -74,7 +74,7 @@ void StatusBarSpaceInfo::slotFoundMountPoint(const QString& mountPoint, const bool valuesChanged = (kBUsed != static_cast<quint64>(value())) || (kBAvailable != static_cast<quint64>(maximum())); if (valuesChanged) { - m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable*1000)); + m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable*1024)); setMaximum(kBSize); setValue(kBUsed); } |
