diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-20 19:39:01 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-28 16:10:53 +0900 |
| commit | 07a12d6eb21cce4cd735de6b4a4a17cce152f6a8 (patch) | |
| tree | 68012ffbb56cb0f0023b257591f3e2218827fda9 /kdevdesigner/src | |
| parent | f9e07649d38f3ec8c2c599c0ba65a288e8eac5e0 (diff) | |
| download | tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.tar.gz tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.zip | |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdevdesigner/src')
| -rw-r--r-- | kdevdesigner/src/kdevdesigner.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdevdesigner/src/kdevdesigner.cpp b/kdevdesigner/src/kdevdesigner.cpp index 6ff96718..d5f3fcc0 100644 --- a/kdevdesigner/src/kdevdesigner.cpp +++ b/kdevdesigner/src/kdevdesigner.cpp @@ -76,8 +76,8 @@ KDevDesigner::KDevDesigner() // if we couldn't find our Part, we exit since the Shell by // itself can't do anything useful KMessageBox::error(this, i18n("Could not find the KDevDesigner 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; } @@ -102,7 +102,7 @@ void KDevDesigner::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()); m_toolbarAction = KStdAction::showToolbar(this, TQ_SLOT(optionsShowToolbar()), actionCollection()); m_statusbarAction = KStdAction::showStatusbar(this, TQ_SLOT(optionsShowStatusbar()), actionCollection()); |
