diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-04-19 02:37:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-04-19 02:37:55 +0000 |
commit | 9f2307382d4acc636b621570ed7770dcab0d652a (patch) | |
tree | 0fa904481c8f137230fef32a6eb27320e0a0bfae /kdecore/kapplication.cpp | |
parent | 13da15f83844afa55de41ab2940541f5ae586187 (diff) | |
download | tdelibs-9f2307382d4acc636b621570ed7770dcab0d652a.tar.gz tdelibs-9f2307382d4acc636b621570ed7770dcab0d652a.zip |
Part II of the previous kdebase commit, adding the global hotkeys<-->DBUS connection.
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1116280 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kapplication.cpp')
-rw-r--r-- | kdecore/kapplication.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kdecore/kapplication.cpp b/kdecore/kapplication.cpp index 59ff86745..e89efe5b9 100644 --- a/kdecore/kapplication.cpp +++ b/kdecore/kapplication.cpp @@ -2603,6 +2603,11 @@ void KApplication::selectAll() invokeEditSlot( SLOT( selectAll() ) ); } +void KApplication::broadcastKeyCode(unsigned int keyCode) +{ + emit coreFakeKeyPress(keyCode); +} + QCString KApplication::launcher() { |