From 932a45c6a8070cbf96eaa583dabc062eccda8908 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sun, 11 Sep 2005 18:32:55 +0000 Subject: [PATCH] sync svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=459750 --- kalzium/src/element.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } } -- 2.47.3