diff options
Diffstat (limited to 'extra/kde315/kkeyserver_x11.h')
-rw-r--r-- | extra/kde315/kkeyserver_x11.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/extra/kde315/kkeyserver_x11.h b/extra/kde315/kkeyserver_x11.h index 5858081..9f37821 100644 --- a/extra/kde315/kkeyserver_x11.h +++ b/extra/kde315/kkeyserver_x11.h @@ -53,7 +53,7 @@ namespace KKeyServer * @return true if succesful, false otherwise * @see TQt::Key */ - bool initTQt( int keyTQt ); + bool initQt( int keyTQt ); /** * Initializes the key with the given string description. @@ -175,7 +175,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; } /** @@ -326,7 +326,7 @@ namespace KKeyServer * @see TQt::Key * @see Sym */ - bool keyTQtToSym( int keyTQt, uint& sym ); + bool keyQtToSym( int keyTQt, uint& sym ); /** * Extracts the modifiers from the given TQt key and @@ -336,7 +336,7 @@ namespace KKeyServer * @return true if successful, false otherwise * @see TQt::Key */ - bool keyTQtToMod( int keyTQt, uint& mod ); + bool keyQtToMod( int keyTQt, uint& mod ); /** * Converts the given symbol to a TQt key code. @@ -346,7 +346,7 @@ namespace KKeyServer * @see TQt::Key * @see Sym */ - bool symToKeyTQt( uint sym, int& keyTQt ); + bool symToKeyQt( uint sym, int& keyTQt ); /** * Converts the mask of ORed @ref KKey::ModFlag modifiers to @@ -358,7 +358,7 @@ namespace KKeyServer * @see TQt::Key * @see KKey */ - bool modToModTQt( uint mod, int& modTQt ); + bool modToModQt( uint mod, int& modTQt ); /** * Converts the mask of ORed @ref KKey::ModFlag modifiers to @@ -380,7 +380,7 @@ namespace KKeyServer * @return true if successful, false otherwise * @see TQt::Key */ - bool modXToModTQt( uint modX, int& modTQt ); + bool modXToModQt( uint modX, int& modTQt ); /** * Converts the mask of ORed X11 modifiers to @@ -429,7 +429,7 @@ namespace KKeyServer * @internal * Unimplemented? */ - void keyTQtToKeyX( uint keyCombTQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX ); + void keyQtToKeyX( uint keyCombTQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX ); } #endif // !_KKEYSERVER_X11_H |