summaryrefslogtreecommitdiffstats
path: root/ark
diff options
context:
space:
mode:
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