diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-21 11:34:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-21 11:34:11 +0900 |
commit | d05b646280d9b464284c534578ca8d98b34e7ce7 (patch) | |
tree | 6e8a518b4723bcc3343e4adcaa55de5b45a8eb52 /src/main.cpp | |
parent | 7d033d1ca0f89077d775b888b1b80fb51382eade (diff) | |
download | tdedocker-d05b646280d9b464284c534578ca8d98b34e7ce7.tar.gz tdedocker-d05b646280d9b464284c534578ca8d98b34e7ce7.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9cc5211..ddb9136 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -45,8 +45,8 @@ static void sighandler(int sig) } tqDebug("%s", i18n("Caught signal %1. Cleaning up.").arg(sig).local8Bit().data()); - ((TDEDocker*)TDEApplication::kApplication())->trayLabelMgr()->undockAll(); - TDEApplication::kApplication()->quit(); + ((TDEDocker*)tdeApp)->trayLabelMgr()->undockAll(); + tdeApp->quit(); } static const TDECmdLineOptions options[] = |