diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-20 17:21:59 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-03 21:40:22 +0900 |
| commit | 2f64e55b006125b1110fcdb05df19909159cee71 (patch) | |
| tree | 113f02dbb3164ef83f2b7cec5e26adb6b5dc97f3 /ktimer | |
| parent | 1feaed7cc0457e3cdafe0c0ce8119ae6ec618cb8 (diff) | |
| download | tdeutils-2f64e55b006125b1110fcdb05df19909159cee71.tar.gz tdeutils-2f64e55b006125b1110fcdb05df19909159cee71.zip | |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ktimer')
| -rw-r--r-- | ktimer/ktimer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ktimer/ktimer.cpp b/ktimer/ktimer.cpp index fb047f3..9d11c4c 100644 --- a/ktimer/ktimer.cpp +++ b/ktimer/ktimer.cpp @@ -120,7 +120,7 @@ KTimerPref::KTimerPref( TQWidget *parent, const char *name ) connect( m_help, TQ_SIGNAL(clicked()), TQ_SLOT(help()) ); connect( m_list, TQ_SIGNAL(currentChanged(TQListViewItem*)), TQ_SLOT(currentChanged(TQListViewItem*)) ); - loadJobs( kapp->config() ); + loadJobs( tdeApp->config() ); show(); } @@ -128,7 +128,7 @@ KTimerPref::KTimerPref( TQWidget *parent, const char *name ) KTimerPref::~KTimerPref() { - saveJobs( kapp->config() ); + saveJobs( tdeApp->config() ); delete d; } @@ -169,7 +169,7 @@ void KTimerPref::remove() void KTimerPref::help() { - kapp->invokeHelp(); + tdeApp->invokeHelp(); } |
