From: Pino Toscano Date: Sun, 11 Sep 2005 18:32:55 +0000 (+0000) Subject: sync X-Git-Tag: v3.80.2~300^2~6 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=932a45c6a8070cbf96eaa583dabc062eccda8908;p=libqmvoc.git sync svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=459750 --- diff --git a/kalzium/src/element.cpp b/kalzium/src/element.cpp index 7a94fc0..0e1421c 100644 --- a/kalzium/src/element.cpp +++ b/kalzium/src/element.cpp @@ -153,16 +153,16 @@ const QString Element::adjustUnits( const int type ) v = i18n( "%1 is the temperature in Kelvin", "%1 K" ).arg( newvalue ); break; case 1://Kelvin to Celsius - v = i18n( "%1 is the temperature in Celsius", "%1 %2C" ).arg( newvalue ).arg( "\xB0" ); + v = i18n( "%1 is the temperature in Celsius", "%1 %2C" ).arg( newvalue ).arg( QChar(0xB0) ); break; case 2: // Kelvin to Fahrenheit - v = i18n( "%1 is the temperature in Fahrenheit", "%1 %2F" ).arg( newvalue ).arg( "\xB0" ); + v = i18n( "%1 is the temperature in Fahrenheit", "%1 %2F" ).arg( newvalue ).arg( QChar(0xB0) ); break; case 3: // Kelvin to Rankine - v = i18n( "%1 is the temperature in Rankine", "%1 %2Ra" ).arg( newvalue ).arg( "\xB0" ); + v = i18n( "%1 is the temperature in Rankine", "%1 %2Ra" ).arg( newvalue ).arg( QChar(0xB0) ); break; case 4: // Kelvin to Reamur - v = i18n( "%1 is the temperature in Reamur", "%1 %2R" ).arg( newvalue ).arg( "\xB0" ); + v = i18n( "%1 is the temperature in Reamur", "%1 %2R" ).arg( newvalue ).arg( QChar(0xB0) ); break; } }