diff options
author | Mavridis Philippe <[email protected]> | 2021-11-13 14:37:36 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2022-01-14 12:36:54 +0200 |
commit | 76aebc5aa6a169fc22b6af4103580c935c276172 (patch) | |
tree | 34c0b830b7a71ae4b5c3d51b89f4b2afa82807a5 | |
parent | 0e7033dd09c78eed673bfcde768483f6ad925ff7 (diff) | |
download | tdetoys-76aebc5aa6a169fc22b6af4103580c935c276172.tar.gz tdetoys-76aebc5aa6a169fc22b6af4103580c935c276172.zip |
KWeather: updated icon name in DockWidget class
Signed-off-by: Mavridis Philippe <[email protected]>
-rw-r--r-- | kweather/dockwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kweather/dockwidget.cpp b/kweather/dockwidget.cpp index 98d00ac..1d423a5 100644 --- a/kweather/dockwidget.cpp +++ b/kweather/dockwidget.cpp @@ -101,7 +101,7 @@ void dockwidget::showWeather() m_weatherService->stationName( m_locationCode ) + " (" + m_weatherService->stationCountry( m_locationCode ) + ")</nobr></center></h3>"; - if ( m_weatherService->currentIconString( m_locationCode ) == "dunno" ) // no data + if ( m_weatherService->currentIconString( m_locationCode ) == "weather-none-available" ) // no data tip += "<center><nobr>" + i18n("The network is currently offline...") + "</nobr></center>"; tip += TQString("<br><table>" |