summaryrefslogtreecommitdiffstats
path: root/ark
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 17:21:59 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:40:22 +0900
commit2f64e55b006125b1110fcdb05df19909159cee71 (patch)
tree113f02dbb3164ef83f2b7cec5e26adb6b5dc97f3 /ark
parent1feaed7cc0457e3cdafe0c0ce8119ae6ec618cb8 (diff)
downloadtdeutils-2f64e55b006125b1110fcdb05df19909159cee71.tar.gz
tdeutils-2f64e55b006125b1110fcdb05df19909159cee71.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ark')
-rw-r--r--ark/mainwindow.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ark/mainwindow.cpp b/ark/mainwindow.cpp
index cada938..33f54ff 100644
--- a/ark/mainwindow.cpp
+++ b/ark/mainwindow.cpp
@@ -120,7 +120,7 @@ MainWindow::setupActions()
closeAction = KStdAction::close(this, TQ_SLOT(file_close()), actionCollection(), "file_close");
recent = KStdAction::openRecent(this, TQ_SLOT(openURL(const KURL&)), actionCollection());
- recent->loadEntries(kapp->config());
+ recent->loadEntries(tdeApp->config());
createStandardStatusBarAction();
@@ -340,7 +340,7 @@ MainWindow::file_quit()
void
MainWindow::slotSaveProperties()
{
- recent->saveEntries(kapp->config());
+ recent->saveEntries(tdeApp->config());
}
void
@@ -365,14 +365,14 @@ void
MainWindow::slotAddRecentURL( const KURL & url )
{
recent->addURL( url );
- recent->saveEntries(kapp->config());
+ recent->saveEntries(tdeApp->config());
}
void
MainWindow::slotRemoveRecentURL( const KURL & url )
{
recent->removeURL( url );
- recent->saveEntries(kapp->config());
+ recent->saveEntries(tdeApp->config());
}
void