diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 19:39:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-20 21:02:39 +0900 |
commit | f989443912807e83607d0bb08a6ff7889632cf17 (patch) | |
tree | d58e2ad3c6caae9e0105b30c6a80b0c2cd17c0b4 /kommander/editor/mainwindowactions.cpp | |
parent | ba0eac4558cc2044486988c42039afa274a7db87 (diff) | |
download | tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.tar.gz tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kommander/editor/mainwindowactions.cpp')
-rw-r--r-- | kommander/editor/mainwindowactions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kommander/editor/mainwindowactions.cpp b/kommander/editor/mainwindowactions.cpp index d0ccda3f..68e197ec 100644 --- a/kommander/editor/mainwindowactions.cpp +++ b/kommander/editor/mainwindowactions.cpp @@ -457,7 +457,7 @@ void MainWindow::setupFileActions() fileMenu->insertSeparator(); - a = KStdAction::quit(kapp, TQ_SLOT(closeAllWindows()), actionCollection()); + a = KStdAction::quit(tdeApp, TQ_SLOT(closeAllWindows()), actionCollection()); a->setToolTip(i18n("Quits the application and prompts to save any changed dialogs")); a->setWhatsThis(whatsThisFrom("File|Exit")); a->plug(fileMenu); |