diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 18:26:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-20 18:26:52 +0900 |
commit | dde6781e00e5f0191eb2b36064b429f52c07a6b1 (patch) | |
tree | 594c33a32692cb322e550e49752b9c9888fa3883 /kworldwatch/main.cpp | |
parent | e465c872a5f5ec43a5f6ec85df207fa13b71c44a (diff) | |
download | tdetoys-dde6781e00e5f0191eb2b36064b429f52c07a6b1.tar.gz tdetoys-dde6781e00e5f0191eb2b36064b429f52c07a6b1.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kworldwatch/main.cpp')
-rw-r--r-- | kworldwatch/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kworldwatch/main.cpp b/kworldwatch/main.cpp index 3195d55..78bd401 100644 --- a/kworldwatch/main.cpp +++ b/kworldwatch/main.cpp @@ -70,7 +70,7 @@ WorldWideWatch::WorldWideWatch(bool restore, TQWidget *parent, const char *name) connect(_map, TQ_SIGNAL(saveSettings()), this, TQ_SLOT(doSave())); if (restore) - load(kapp->config()); + load(tdeApp->config()); } @@ -96,14 +96,14 @@ void WorldWideWatch::save(TDEConfig *config) void WorldWideWatch::doSave() { - save(kapp->config()); + save(tdeApp->config()); } void WatchApplication::dumpMap() { // guess some default parameters - TQSize mapSize(kapp->desktop()->size()); + TQSize mapSize(tdeApp->desktop()->size()); TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); |