summaryrefslogtreecommitdiffstats
path: root/kapptemplate/kpartapp/app.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kapptemplate/kpartapp/app.cpp')
-rw-r--r--kapptemplate/kpartapp/app.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kapptemplate/kpartapp/app.cpp b/kapptemplate/kpartapp/app.cpp
index 62e31dda..e95dfba2 100644
--- a/kapptemplate/kpartapp/app.cpp
+++ b/kapptemplate/kpartapp/app.cpp
@@ -56,8 +56,8 @@ ${APP_NAME}::${APP_NAME}()
// if we couldn't find our Part, we exit since the Shell by
// itself can't do anything useful
KMessageBox::error(this, "Could not find our Part!");
- kapp->quit();
- // we return here, cause kapp->quit() only means "exit the
+ tdeApp->quit();
+ // we return here, cause tdeApp->quit() only means "exit the
// next time we enter the event loop...
return;
}
@@ -82,7 +82,7 @@ void ${APP_NAME}::setupActions()
KStdAction::openNew(this, TQ_SLOT(fileNew()), actionCollection());
KStdAction::open(this, TQ_SLOT(fileOpen()), actionCollection());
- KStdAction::quit(kapp, TQ_SLOT(quit()), actionCollection());
+ KStdAction::quit(tdeApp, TQ_SLOT(quit()), actionCollection());
createStandardStatusBarAction();
setStandardToolBarMenuEnabled(true);