diff options
Diffstat (limited to 'kweather/weather_icon.cpp')
-rw-r--r-- | kweather/weather_icon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kweather/weather_icon.cpp b/kweather/weather_icon.cpp index 3c61213..6e2f164 100644 --- a/kweather/weather_icon.cpp +++ b/kweather/weather_icon.cpp @@ -3,9 +3,9 @@ #include "weather_icon.h" WeatherIcon::WeatherIcon( int condition, bool night ) - : iconLoader() { TQString name; + iconLoader = new TDEIconLoader("kweather"); switch( condition ) { @@ -47,8 +47,8 @@ WeatherIcon::WeatherIcon( int condition, bool night ) } WeatherIcon::WeatherIcon( int condition, bool night, unsigned int strength ) - : iconLoader() { + iconLoader = new TDEIconLoader("kweather"); TQString name; switch ( condition ) |