diff options
author | Michele Calgaro <[email protected]> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:32:19 +0900 |
commit | 0b81a0c481a3a64d5449171a534bc8c91ae73181 (patch) | |
tree | 95cd236e86e934f492b4a4a1bd44bcf434a91ab2 /tdeui/tdeshortcutdialog.cpp | |
parent | 180ceca8bb26bbe97f60c99e5d172eb8ccd66e6d (diff) | |
download | tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.tar.gz tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/tdeshortcutdialog.cpp')
-rw-r--r-- | tdeui/tdeshortcutdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/tdeshortcutdialog.cpp b/tdeui/tdeshortcutdialog.cpp index be0386dea..f808cd5b3 100644 --- a/tdeui/tdeshortcutdialog.cpp +++ b/tdeui/tdeshortcutdialog.cpp @@ -122,7 +122,7 @@ TDEShortcutDialog::TDEShortcutDialog( const TDEShortcut& shortcut, bool bQtShort updateDetails(); #ifdef TQ_WS_X11 - kapp->installX11EventFilter( this ); // Allow button to capture X Key Events. + tdeApp->installX11EventFilter( this ); // Allow button to capture X Key Events. #endif } @@ -219,7 +219,7 @@ void TDEShortcutDialog::updateDetails() m_simple->m_txtShortcut->setFocus(); m_adv->m_btnMultiKey->setChecked( false ); } - kapp->processEvents(); + tdeApp->processEvents(); adjustSize(); } |