summaryrefslogtreecommitdiffstats
path: root/kcron
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 17:21:29 +0900
committerMichele Calgaro <[email protected]>2025-01-20 17:21:29 +0900
commitbd28b782b7033c3fe0d4b3a71f10206155414f7e (patch)
tree2450c6c10200e7c08bc261cf8606275fcd1638c7 /kcron
parent8dd602c4cb47624b1d4dbac2743ee20ab00001e4 (diff)
downloadtdeadmin-bd28b782b7033c3fe0d4b3a71f10206155414f7e.tar.gz
tdeadmin-bd28b782b7033c3fe0d4b3a71f10206155414f7e.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kcron')
-rw-r--r--kcron/ktapp.cpp4
-rw-r--r--kcron/ktvariable.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/kcron/ktapp.cpp b/kcron/ktapp.cpp
index 22d92dc..e5a1d93 100644
--- a/kcron/ktapp.cpp
+++ b/kcron/ktapp.cpp
@@ -35,7 +35,7 @@ const int KTApp::statusMessage (1001);
KTApp::KTApp() : TDEMainWindow(0)
{
- config=kapp->config();
+ config=tdeApp->config();
setIcon(KTIcon::application(true));
@@ -113,7 +113,7 @@ const CTHost& KTApp::getCTHost() const
TQString KTApp::caption()
{
- TQString cap(kapp->caption());
+ TQString cap(tdeApp->caption());
return cap;
}
diff --git a/kcron/ktvariable.cpp b/kcron/ktvariable.cpp
index 65628cb..47950fe 100644
--- a/kcron/ktvariable.cpp
+++ b/kcron/ktvariable.cpp
@@ -13,7 +13,7 @@
#include <tqlayout.h>
-#include <tdeapplication.h> // kapp
+#include <tdeapplication.h> // tdeApp
#include <tdelocale.h> // i18n()
#include <tdemessagebox.h>
#include <ktextedit.h>