From ceb025068e98f44384a11114547a0a60f10f92bd Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Tue, 30 Mar 2021 14:15:55 +0300 Subject: [PATCH] Fixed KKey::QtWIN->KKey::TQtWIN renaming. Signed-off-by: Mavridis Philippe --- src/komposesettings.cpp | 8 ++++---- 1 file 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