author | sudonix <sudonix> | 2004-02-15 00:16:06 (UTC) |
---|---|---|
committer | sudonix <sudonix> | 2004-02-15 00:16:06 (UTC) |
commit | a69419579abfd56b8b3fd7bd600e46267f09d1ce (patch) (unidiff) | |
tree | af3169cb21baac87307a3085f3dd030bc8626ccb | |
parent | 69e24ece89e6ec530bb5e5614a2e2125e76525a9 (diff) | |
download | opie-a69419579abfd56b8b3fd7bd600e46267f09d1ce.zip opie-a69419579abfd56b8b3fd7bd600e46267f09d1ce.tar.gz opie-a69419579abfd56b8b3fd7bd600e46267f09d1ce.tar.bz2 |
A small typo fixed
-rw-r--r-- | noncore/todayplugins/weather/weatherpluginwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/todayplugins/weather/weatherpluginwidget.cpp b/noncore/todayplugins/weather/weatherpluginwidget.cpp index 8440f20..4491b91 100644 --- a/noncore/todayplugins/weather/weatherpluginwidget.cpp +++ b/noncore/todayplugins/weather/weatherpluginwidget.cpp | |||
@@ -257,9 +257,9 @@ void WeatherPluginWidget::getPressure( const QString &data ) | |||
257 | { | 257 | { |
258 | if ( data.mid( pos, 1 ) == "A" ) | 258 | if ( data.mid( pos, 1 ) == "A" ) |
259 | value *= 33.8639 / 100; | 259 | value *= 33.8639 / 100; |
260 | dataStr = QString::number( value, 'f', 2 ); | 260 | dataStr = QString::number( value, 'f', 2 ); |
261 | dataStr.append( tr( " hPa" ) ); | 261 | dataStr.append( tr( " kPa" ) ); |
262 | } | 262 | } |
263 | else | 263 | else |
264 | { | 264 | { |
265 | if ( data.mid( pos, 1 ) == "Q" ) | 265 | if ( data.mid( pos, 1 ) == "Q" ) |