From 0e7033dd09c78eed673bfcde768483f6ad925ff7 Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Sat, 13 Nov 2021 14:17:53 +0200 Subject: KWeather: updated icon handling. The newly added class abstracts away icon names from the main code and has the ability to fall back to "safer" icon choices so as to ensure (if possible) icon theme consistency. Signed-off-by: Mavridis Philippe --- kweather/weatherlib.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'kweather/weatherlib.cpp') 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 : geiseri@msoe.edu #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() ) -- cgit v1.2.1