From 399dbbe957d219ad88b0c5624654496302969cf4 Mon Sep 17 00:00:00 2001 From: schurig Date: Mon, 20 Sep 2004 08:17:49 +0000 Subject: use ";", not "," as delimiter of the speed field's write and read speeds, because in the result file the fields are delimited with "," as well --- (limited to 'noncore') diff --git a/noncore/settings/sysinfo/benchmarkinfo.cpp b/noncore/settings/sysinfo/benchmarkinfo.cpp index fde032a..793fcb1 100644 --- a/noncore/settings/sysinfo/benchmarkinfo.cpp +++ b/noncore/settings/sysinfo/benchmarkinfo.cpp @@ -403,6 +403,6 @@ void BenchmarkInfo::performFileTest( const QString& fname, OCheckListItem* item writeSpeed /= 1024.0; writeUnit = "MB/s"; } - item->setText( 1, QString().sprintf( "%.2f %s, %.2f %s", readSpeed, readUnit.latin1(), writeSpeed, writeUnit.latin1() ) ); + item->setText( 1, QString().sprintf( "%.2f %s; %.2f %s", readSpeed, readUnit.latin1(), writeSpeed, writeUnit.latin1() ) ); item->setOn( false ); } -- cgit v0.9.0.2