From: Jeff Mitchell Date: Fri, 28 Mar 2008 01:24:50 +0000 (+0000) Subject: Revert back to kibibytes for now X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/1fed8b968cdf4e3dd9d5d9c10843a155e06ce172 Revert back to kibibytes for now svn path=/trunk/KDE/kdebase/apps/; revision=791031 --- 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(value())) || (kBAvailable != static_cast(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); }