diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:58 -0600 |
commit | 9e5c87c89567a98c3344c90e392a27715437334c (patch) | |
tree | 6c1dd96ae0ba38b7e8f0a492d591881f44f474da /kmilo | |
parent | 53904b41cf005abbae3d468532db9adc2b04a9b4 (diff) | |
download | tdeutils-9e5c87c89567a98c3344c90e392a27715437334c.tar.gz tdeutils-9e5c87c89567a98c3344c90e392a27715437334c.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kmilo')
-rw-r--r-- | kmilo/generic/generic_monitor.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kmilo/generic/generic_monitor.cpp b/kmilo/generic/generic_monitor.cpp index b44ab7e..28138ec 100644 --- a/kmilo/generic/generic_monitor.cpp +++ b/kmilo/generic/generic_monitor.cpp @@ -79,23 +79,23 @@ bool GenericMonitor::init() return false; // exit early if we are not supposed to run static const ShortcutInfo shortcuts[] = { - { "Search", KShortcut("XF86Search"), TQT_SLOT(launchSearch()) }, - { "Home Folder", KShortcut("XF86MyComputer"), TQT_SLOT(launchHomeFolder()) }, - { "Mail", KShortcut("XF86Mail"), TQT_SLOT(launchMail()) }, - { "Audio Media", KShortcut("XF86AudioMedia"), TQT_SLOT(launchMusic()) }, - { "Music", KShortcut("XF86Music"), TQT_SLOT(launchMusic()) }, - { "Browser", KShortcut("XF86WWW"), TQT_SLOT(launchBrowser()) }, - { "Calculator", KShortcut("XF86Calculator"), TQT_SLOT(launchCalculator()) }, - { "Terminal", KShortcut("XF86Terminal"), TQT_SLOT(launchTerminal()) }, - { "Eject", KShortcut("XF86Eject"), TQT_SLOT(eject()) }, - { "Help", KShortcut("XF86Launch0"), TQT_SLOT(launchHelp()) }, - { "Light Bulb", KShortcut("XF86LightBulb"), TQT_SLOT(lightBulb()) }, - { "Battery", KShortcut("XF86LaunchB"), TQT_SLOT(pmBattery()) }, + { "Search", TDEShortcut("XF86Search"), TQT_SLOT(launchSearch()) }, + { "Home Folder", TDEShortcut("XF86MyComputer"), TQT_SLOT(launchHomeFolder()) }, + { "Mail", TDEShortcut("XF86Mail"), TQT_SLOT(launchMail()) }, + { "Audio Media", TDEShortcut("XF86AudioMedia"), TQT_SLOT(launchMusic()) }, + { "Music", TDEShortcut("XF86Music"), TQT_SLOT(launchMusic()) }, + { "Browser", TDEShortcut("XF86WWW"), TQT_SLOT(launchBrowser()) }, + { "Calculator", TDEShortcut("XF86Calculator"), TQT_SLOT(launchCalculator()) }, + { "Terminal", TDEShortcut("XF86Terminal"), TQT_SLOT(launchTerminal()) }, + { "Eject", TDEShortcut("XF86Eject"), TQT_SLOT(eject()) }, + { "Help", TDEShortcut("XF86Launch0"), TQT_SLOT(launchHelp()) }, + { "Light Bulb", TDEShortcut("XF86LightBulb"), TQT_SLOT(lightBulb()) }, + { "Battery", TDEShortcut("XF86LaunchB"), TQT_SLOT(pmBattery()) }, { "FastVolumeUp", TQt::Key_VolumeUp, TQT_SLOT(fastVolumeUp()) }, { "FastVolumeDown", TQt::Key_VolumeDown, TQT_SLOT(fastVolumeDown()) }, { "SlowVolumeUp", TQt::CTRL+TQt::Key_VolumeUp, TQT_SLOT(slowVolumeUp()) }, { "SlowVolumeDown", TQt::CTRL+TQt::Key_VolumeDown, TQT_SLOT(slowVolumeDown()) }, - { "Mute", KShortcut("XF86AudioMute"), TQT_SLOT(mute()) } + { "Mute", TDEShortcut("XF86AudioMute"), TQT_SLOT(mute()) } }; ga = new TDEGlobalAccel(this, "miloGenericAccel"); |