diff options
author | Mavridis Philippe <[email protected]> | 2022-01-14 12:42:14 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2022-01-14 12:46:04 +0200 |
commit | 621ec8bf1d71176a1ea5cf5815dcd8312902e44b (patch) | |
tree | 101ba54bfd99ff1598f04f2ede20599e2350c3c8 | |
parent | 46095a976686cefcaecebe29aeda1d7537e25d98 (diff) | |
download | tdetoys-621ec8bf1d71176a1ea5cf5815dcd8312902e44b.tar.gz tdetoys-621ec8bf1d71176a1ea5cf5815dcd8312902e44b.zip |
KWeather: Place Service section before Stations
Signed-off-by: Mavridis Philippe <[email protected]>
-rw-r--r-- | kweather/kweather.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kweather/kweather.cpp b/kweather/kweather.cpp index f1e025f..8d0b618 100644 --- a/kweather/kweather.cpp +++ b/kweather/kweather.cpp @@ -162,8 +162,8 @@ void kweather::preferences() connect( settingsDialog, TQT_SIGNAL( configCommitted() ), TQT_SLOT( slotPrefsAccepted() ) ); settingsDialog->addModule( "kcmweatherapplet.desktop" ); - settingsDialog->addModule( "kcmweatherstations.desktop" ); settingsDialog->addModule( "kcmweatherservice.desktop" ); + settingsDialog->addModule( "kcmweatherstations.desktop" ); } settingsDialog->show(); |