diff options
Diffstat (limited to 'kweather/weatherlib.cpp')
-rw-r--r-- | kweather/weatherlib.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kweather/weatherlib.cpp b/kweather/weatherlib.cpp index c628d77..32d653c 100644 --- a/kweather/weatherlib.cpp +++ b/kweather/weatherlib.cpp @@ -39,6 +39,7 @@ email : [email protected] #include "stationdatabase.h" #include "sun.h" #include "weatherlib.h" +#include "weather_icon.h" #include "weatherlib.moc" @@ -271,7 +272,7 @@ TQString WeatherLib::windChill(const TQString &stationID){ TQString WeatherLib::iconName(const TQString &stationID){ - TQString result("dunno"); + TQString result = WeatherIcon::unknown(); // isEmpty is true for null or 0 length strings if ( !stationID.isEmpty() ) |