print the values we actually meant to print in kWarning()

svn path=/branches/partitionmanager/1.0/partitionmanager/; revision=1102414
This commit is contained in:
Volker Lanz 2010-03-12 13:24:20 +00:00
parent 1355007dfc
commit 5d2c3f172e
1 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@ bool PartResizerWidget::updateSectors(qint64 newSectorsBefore, qint64 newSectors
if (newSectorsBefore < 0 || newSectorsAfter < 0)
{
kWarning() << "new sectors before partition: " << newSectorsBefore;
kWarning() << "new sectors after partition: " << newSectorsBefore;
kWarning() << "new sectors after partition: " << newSectorsAfter;
return false;
}
@ -219,7 +219,7 @@ bool PartResizerWidget::updateSectors(qint64 newSectorsBefore, qint64 newSectors
{
kWarning() << "total sectors: " << totalSectors();
kWarning() << "new sectors before partition: " << newSectorsBefore;
kWarning() << "new sectors after partition: " << newSectorsBefore;
kWarning() << "new sectors after partition: " << newSectorsAfter;
kWarning() << "partition length: " << partition().length();
return false;
}