Using Locale delimiter

This commit is contained in:
jriegel
2014-02-10 19:22:44 +01:00
parent 6a52847771
commit bb8fcd2bf3
3 changed files with 3 additions and 3 deletions

View File

@@ -99,6 +99,6 @@ QString UnitsSchemaInternal::schemaTranslate(Base::Quantity quant,double &factor
unitString = quant.getUnit().getString();
factor = 1.0;
}
return QString::fromUtf8("%1 %2").arg(quant.getValue() / factor).arg(unitString);
return QString::fromUtf8("%L1 %2").arg(quant.getValue() / factor).arg(unitString);
}