]> Git trees. - libqmvoc.git/commitdiff
sync
authorPino Toscano <pino@kde.org>
Sun, 11 Sep 2005 18:32:55 +0000 (18:32 +0000)
committerPino Toscano <pino@kde.org>
Sun, 11 Sep 2005 18:32:55 +0000 (18:32 +0000)
svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=459750

kalzium/src/element.cpp

index 7a94fc01bfb208c566ca3761f0bc67cf7555b05e..0e1421c4db48ff7839e9756db34a19b58c2b8010 100644 (file)
@@ -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;
                        }
                }