summaryrefslogtreecommitdiffstats
path: root/kmix
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-09-09 12:39:13 +0200
committerSlávek Banko <slavek.banko@axis.cz>2012-09-09 12:39:13 +0200
commitedc41514713691769ed389a9e3854495a536fe96 (patch)
tree935ab8d66df29bcfa163040c45fa189e7f7498f4 /kmix
parentd229e63abbf15c17aa4e49574e2e86a930a6b68b (diff)
downloadtdemultimedia-edc41514713691769ed389a9e3854495a536fe96.tar.gz
tdemultimedia-edc41514713691769ed389a9e3854495a536fe96.zip
Added default global shortcuts for kmix
Diffstat (limited to 'kmix')
-rw-r--r--kmix/kmix.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmix/kmix.cpp b/kmix/kmix.cpp
index 08333825..65c6f560 100644
--- a/kmix/kmix.cpp
+++ b/kmix/kmix.cpp
@@ -121,11 +121,11 @@ KMixWindow::initActions()
m_globalAccel = new KGlobalAccel( TQT_TQOBJECT(this) );
m_globalAccel->insert( "Increase volume", i18n( "Increase Volume of Master Channel"), TQString(),
- KShortcut(), KShortcut(), TQT_TQOBJECT(this), TQT_SLOT( increaseVolume() ) );
+ KShortcut(TQString("XF86AudioRaiseVolume")), KShortcut(TQString("XF86AudioRaiseVolume")), TQT_TQOBJECT(this), TQT_SLOT( increaseVolume() ) );
m_globalAccel->insert( "Decrease volume", i18n( "Decrease Volume of Master Channel"), TQString(),
- KShortcut(), KShortcut(), TQT_TQOBJECT(this), TQT_SLOT( decreaseVolume() ) );
+ KShortcut(TQString("XF86AudioLowerVolume")), KShortcut(TQString("XF86AudioLowerVolume")), TQT_TQOBJECT(this), TQT_SLOT( decreaseVolume() ) );
m_globalAccel->insert( "Toggle mute", i18n( "Toggle Mute of Master Channel"), TQString(),
- KShortcut(), KShortcut(), TQT_TQOBJECT(this), TQT_SLOT( toggleMuted() ) );
+ KShortcut(TQString("XF86AudioMute")), KShortcut(TQString("XF86AudioMute")), TQT_TQOBJECT(this), TQT_SLOT( toggleMuted() ) );
m_globalAccel->readSettings();
m_globalAccel->updateConnections();