diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-08-07 15:09:33 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-08-07 15:09:33 -0500 |
commit | 5df549ce8d57f5622ab5e0b9037994a07eb7f28d (patch) | |
tree | a0f2eb1cb38627e6da7a1132dcf9568a9f800c72 /tdecore/kglobalaccel_win.cpp | |
parent | a5fb7a12308e9883da7f557644d6710bf7a0656d (diff) | |
download | tdelibs-5df549ce8d57f5622ab5e0b9037994a07eb7f28d.tar.gz tdelibs-5df549ce8d57f5622ab5e0b9037994a07eb7f28d.zip |
Update calls to deprecated XKeycodeToKeysym function
Diffstat (limited to 'tdecore/kglobalaccel_win.cpp')
-rw-r--r-- | tdecore/kglobalaccel_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/kglobalaccel_win.cpp b/tdecore/kglobalaccel_win.cpp index 42175c5ba..4323320bc 100644 --- a/tdecore/kglobalaccel_win.cpp +++ b/tdecore/kglobalaccel_win.cpp @@ -237,7 +237,7 @@ bool KGlobalAccelPrivate::x11KeyPress( const XEvent *pEvent ) // e.g., KP_4 => Shift+KP_Left, and Shift+KP_4 => KP_Left. if( pEvent->xkey.state & KKeyServer::modXNumLock() ) { // TODO: what's the xor operator in c++? - uint sym = XKeycodeToKeysym( tqt_xdisplay(), codemod.code, 0 ); + uint sym = XkbKeycodeToKeysym( tqt_xdisplay(), codemod.code, 0, 0 ); // If this is a keypad key, if( sym >= XK_KP_Space && sym <= XK_KP_9 ) { switch( sym ) { |