diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 03:12:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 03:12:09 -0600 |
commit | b7333cd4f3c45b30853f7a748ac43bb2fa820d41 (patch) | |
tree | 037656a0676d513cb895ba2caa84d451080e8fab /extra/kde351 | |
parent | d0e77a7577bcf1f4111244a44d3966bf14c2774d (diff) | |
download | pytde-b7333cd4f3c45b30853f7a748ac43bb2fa820d41.tar.gz pytde-b7333cd4f3c45b30853f7a748ac43bb2fa820d41.zip |
Fix a number of kkeyserver problems
Diffstat (limited to 'extra/kde351')
-rw-r--r-- | extra/kde351/kkeyserver_x11.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/extra/kde351/kkeyserver_x11.h b/extra/kde351/kkeyserver_x11.h index daecca4..3c00729 100644 --- a/extra/kde351/kkeyserver_x11.h +++ b/extra/kde351/kkeyserver_x11.h @@ -73,7 +73,7 @@ namespace KKeyServer * @return true if successful, false otherwise * @see TQt::Key */ - bool initTQt( int keyTQt ); + bool initQt( int keyTQt ); /** * Initializes the key with the given string description. @@ -195,7 +195,7 @@ namespace KKeyServer * Sets the qt key code. * @param keyTQt the qt key code */ - void setKeycodeTQt( int keyTQt ) + void setKeycodeQt( int keyTQt ) { m_code = CODE_FOR_QT; m_sym = keyTQt; } /** @@ -354,7 +354,7 @@ namespace KKeyServer * @see TQt::Key * @see Sym */ - TDECORE_EXPORT bool keyTQtToSym( int keyTQt, uint& sym ); + TDECORE_EXPORT bool keyQtToSym( int keyTQt, uint& sym ); /** * Extracts the modifiers from the given TQt key and @@ -364,7 +364,7 @@ namespace KKeyServer * @return true if successful, false otherwise * @see TQt::Key */ - TDECORE_EXPORT bool keyTQtToMod( int keyTQt, uint& mod ); + TDECORE_EXPORT bool keyQtToMod( int keyTQt, uint& mod ); /** * Converts the given symbol to a TQt key code. @@ -374,7 +374,7 @@ namespace KKeyServer * @see TQt::Key * @see Sym */ - TDECORE_EXPORT bool symToKeyTQt( uint sym, int& keyTQt ); + TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyTQt ); /** * Converts the mask of ORed KKey::ModFlag modifiers to @@ -386,7 +386,7 @@ namespace KKeyServer * @see TQt::Key * @see KKey */ - TDECORE_EXPORT bool modToModTQt( uint mod, int& modTQt ); + TDECORE_EXPORT bool modToModQt( uint mod, int& modTQt ); /** * Converts the mask of ORed KKey::ModFlag modifiers to @@ -409,7 +409,7 @@ namespace KKeyServer * @see TQt::Key */ //wrapped for win32 - TDECORE_EXPORT bool modXToModTQt( uint modX, int& modTQt ); + TDECORE_EXPORT bool modXToModQt( uint modX, int& modTQt ); /** * Converts the TQt-compatible button state to x11 modifier. @@ -471,7 +471,7 @@ namespace KKeyServer * @internal * Unimplemented? */ - TDECORE_EXPORT void keyTQtToKeyX( uint keyCombTQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX ); + TDECORE_EXPORT void keyQtToKeyX( uint keyCombTQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX ); } #endif // !_KKEYSERVER_X11_H |