diff options
author | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:15:55 +0300 |
---|---|---|
committer | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:15:55 +0300 |
commit | ceb025068e98f44384a11114547a0a60f10f92bd (patch) | |
tree | 432f8974ca27b6e452b619274c0d127e2ebbf4bc | |
parent | 29129afdb289a6e17146cc69867c95e0758cf4aa (diff) | |
download | kompose-ceb025068e98f44384a11114547a0a60f10f92bd.tar.gz kompose-ceb025068e98f44384a11114547a0a60f10f92bd.zip |
Fixed KKey::QtWIN->KKey::TQtWIN renaming.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
-rw-r--r-- | src/komposesettings.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/komposesettings.cpp b/src/komposesettings.cpp index a4941ce..211bda1 100644 --- a/src/komposesettings.cpp +++ b/src/komposesettings.cpp @@ -51,19 +51,19 @@ KomposeSettings::KomposeSettings(TQObject *parent, const char *name) globalAccel = new TDEGlobalAccel( this ); globalAccel->insert( "showDefaultView", i18n("Show Komposé (default view)"), i18n("Displays the view you have configured as default"), - KKey::TQtWIN+Key_Tab, KKey::TQtWIN+CTRL+SHIFT+Key_Tab, + KKey::QtWIN+Key_Tab, KKey::QtWIN+CTRL+SHIFT+Key_Tab, KomposeViewManager::instance(), SLOT(createDefaultView()) ); globalAccel->insert( "showWorldView", i18n("Show Komposé (ungrouped)"), i18n("Displays all windows unsorted"), - CTRL+SHIFT+Key_J, KKey::TQtWIN+CTRL+SHIFT+Key_J, + CTRL+SHIFT+Key_J, KKey::QtWIN+CTRL+SHIFT+Key_J, KomposeViewManager::instance(), SLOT(createWorldView()) ); globalAccel->insert( "showVirtualDesktopView", i18n("Show Komposé (grouped by virtual desktops)"), i18n("Displays all windows sorted by virtual desktops"), - CTRL+SHIFT+Key_I, KKey::TQtWIN+CTRL+SHIFT+Key_I, + CTRL+SHIFT+Key_I, KKey::QtWIN+CTRL+SHIFT+Key_I, KomposeViewManager::instance(), SLOT(createVirtualDesktopView()) ); globalAccel->insert( "showCurrentDesktopView", i18n("Show Komposé (current virtual desktop)"), i18n("Displays all windows on the current desktop"), - CTRL+SHIFT+Key_K, KKey::TQtWIN+CTRL+SHIFT+Key_K, + CTRL+SHIFT+Key_K, KKey::QtWIN+CTRL+SHIFT+Key_K, KomposeViewManager::instance(), SLOT(createCurrentDesktopView()) ); // read Settings from cfg file |