diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-21 11:50:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-22 10:21:25 +0900 |
commit | 4603b024aed86c023b63a01b65ce7e3d534c0bb7 (patch) | |
tree | ed4b393c56f2ca0b8bc2bf7506d2738b0ddbd43d /kweather/main.cpp | |
parent | 1606ffffcc4335bd0af03d66ab1ce5be1407829d (diff) | |
download | tdetoys-4603b024aed86c023b63a01b65ce7e3d534c0bb7.tar.gz tdetoys-4603b024aed86c023b63a01b65ce7e3d534c0bb7.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit dba312132e8a2e0cbcbb157876b8c135130880fa)
Diffstat (limited to 'kweather/main.cpp')
-rw-r--r-- | kweather/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kweather/main.cpp b/kweather/main.cpp index 5c8d494..595e653 100644 --- a/kweather/main.cpp +++ b/kweather/main.cpp @@ -29,7 +29,7 @@ int main (int argc, char *argv[]) // This app is started automatically, no need for session management app.disableSessionManagement(); kdDebug() << "starting dcopservice " << endl; - new WeatherService(TQT_TQOBJECT(&app), "WeatherService"); + new WeatherService(&app, "WeatherService"); return app.exec(); } |