diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 18:26:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-20 18:26:41 +0900 |
commit | aae5ebe5008a41fe4a4767092d7e17600abf6725 (patch) | |
tree | 97002e11e1564bceeda4fb4b3b04164bb9e72286 /kmobile | |
parent | 69779eb81c20b80b56ab698f44a944efd6107a74 (diff) | |
download | tdepim-rename/tdeapp.tar.gz tdepim-rename/tdeapp.zip |
Use tdeApprename/tdeapp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kmobile')
-rw-r--r-- | kmobile/kmobile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmobile/kmobile.cpp b/kmobile/kmobile.cpp index 6febb6aa3..c7535f526 100644 --- a/kmobile/kmobile.cpp +++ b/kmobile/kmobile.cpp @@ -94,7 +94,7 @@ KMobile::~KMobile() void KMobile::setupActions() { KStdAction::close(this, TQ_SLOT(dockApplication()), actionCollection()); - KStdAction::quit(kapp, TQ_SLOT(quit()), actionCollection()); + KStdAction::quit(tdeApp, TQ_SLOT(quit()), actionCollection()); m_toolbarAction = KStdAction::showToolbar(this, TQ_SLOT(optionsShowToolbar()), actionCollection()); optionsShowToolbar(); @@ -115,7 +115,7 @@ void KMobile::setupActions() createGUI(); - connect( kapp, TQ_SIGNAL(aboutToQuit()), this, TQ_SLOT(saveAll()) ); + connect( tdeApp, TQ_SIGNAL(aboutToQuit()), this, TQ_SLOT(saveAll()) ); } @@ -139,7 +139,7 @@ bool KMobile::queryExit() void KMobile::slotQuit() { - kapp->quit(); + tdeApp->quit(); } void KMobile::showMinimized() @@ -304,7 +304,7 @@ void KMobile::addDevice() "Please use the Skeleton- or Gnokii Device Driver during development.<p>" "This driver will still be visible, but you won't be able to access it " "from Konqueror or any other application.</qt>").arg(ptr->name()), - kapp->name()); + tdeApp->name()); } saveAll(); |