diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 19:38:51 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-29 13:55:46 +0900 |
commit | 5078ce4c93affa49e4ba206930b07813d066415b (patch) | |
tree | 4de09da0a57e07b1e5df2be8e568f5dfbb35d83e /kuiviewer/kuiviewer.cpp | |
parent | a52f07f6833590b410ac9cde84ee60caaed67631 (diff) | |
download | tdesdk-5078ce4c93affa49e4ba206930b07813d066415b.tar.gz tdesdk-5078ce4c93affa49e4ba206930b07813d066415b.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kuiviewer/kuiviewer.cpp')
-rw-r--r-- | kuiviewer/kuiviewer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kuiviewer/kuiviewer.cpp b/kuiviewer/kuiviewer.cpp index e7f18950..b72599aa 100644 --- a/kuiviewer/kuiviewer.cpp +++ b/kuiviewer/kuiviewer.cpp @@ -78,8 +78,8 @@ KUIViewer::KUIViewer() // itself can't do anything useful //FIXME improve message, which Part is this referring to? KMessageBox::error(this, i18n("Unable to locate Kuiviewer kpart.")); - 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; } @@ -98,7 +98,7 @@ void KUIViewer::load(const KURL& url) void KUIViewer::setupActions() { KStdAction::open(this, TQ_SLOT(fileOpen()), actionCollection()); - KStdAction::quit(kapp, TQ_SLOT(quit()), actionCollection()); + KStdAction::quit(tdeApp, TQ_SLOT(quit()), actionCollection()); } void KUIViewer::saveProperties(TDEConfig* /*config*/) |