use the unicode symbol for mu

This commit is contained in:
wmayer 2016-08-05 10:38:33 +02:00
parent 6176756b28
commit 1eca045744
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ QString UnitsSchemaInternal::schemaTranslate(const Quantity &quant, double &fact
}
else if (unit == Unit::ThermalExpansionCoefficient) {
if (UnitValue < 0.001) {
unitString = QString::fromLatin1("um/m/K");
unitString = QString::fromUtf8("\xC2\xB5m/m/K");
factor = 0.000001;
}
else {

View File

@ -140,7 +140,7 @@ QString UnitsSchemaMKS::schemaTranslate(const Quantity &quant, double &factor, Q
}
else if (unit == Unit::ThermalExpansionCoefficient) {
if (UnitValue < 0.001) {
unitString = QString::fromLatin1("um/m/K");
unitString = QString::fromUtf8("\xC2\xB5m/m/K");
factor = 0.000001;
}
else {