Ack, forgot half the fix

svn path=/trunk/KDE/kdebase/apps/; revision=790987
This commit is contained in:
Jeff Mitchell 2008-03-27 22:53:14 +00:00
parent fba908b88c
commit daf788e858

View file

@ -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));
m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable*1024));
setMaximum(kBSize);
setValue(kBUsed);
}