diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/kkeyserver_x11.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kkeyserver_x11.h')
-rw-r--r-- | kdecore/kkeyserver_x11.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdecore/kkeyserver_x11.h b/kdecore/kkeyserver_x11.h index 73c800db2..dbca533e4 100644 --- a/kdecore/kkeyserver_x11.h +++ b/kdecore/kkeyserver_x11.h @@ -64,7 +64,7 @@ namespace KKeyServer * @param s the description of the symbol * @see toString() */ - Sym( const QString& s ) + Sym( const TQString& s ) { init( s ); } /** @@ -81,7 +81,7 @@ namespace KKeyServer * @return true if successful, false otherwise * @see toString() */ - bool init( const QString &s ); + bool init( const TQString &s ); /** * Returns the qt key code of the symbol. @@ -92,13 +92,13 @@ namespace KKeyServer /** * @internal */ - QString toStringInternal() const; + TQString toStringInternal() const; /** * Returns the string representation of the symbol. * @return the string representation of the symbol */ - QString toString() const; + TQString toString() const; /** * Returns the mods that are required for this symbol as @@ -125,9 +125,9 @@ namespace KKeyServer Sym& operator =( uint sym ) { m_sym = sym; return *this; } private: - QString toString( bool bUserSpace ) const; + TQString toString( bool bUserSpace ) const; - static void capitalizeKeyname( QString& ); + static void capitalizeKeyname( TQString& ); }; /** @@ -443,7 +443,7 @@ namespace KKeyServer /** * @internal */ - KDECORE_EXPORT QString modToStringInternal( uint mod ); + KDECORE_EXPORT TQString modToStringInternal( uint mod ); /** * Converts the mask of ORed KKey::ModFlag modifiers to a @@ -451,7 +451,7 @@ namespace KKeyServer * @param mod the mask of ORed KKey::ModFlag modifiers * @return the user-readable string */ - KDECORE_EXPORT QString modToStringUser( uint mod ); + KDECORE_EXPORT TQString modToStringUser( uint mod ); /** * Converts the modifier given as user-readable string @@ -459,13 +459,13 @@ namespace KKeyServer * @internal * @since 3.5 */ - KDECORE_EXPORT uint stringUserToMod( const QString& mod ); + KDECORE_EXPORT uint stringUserToMod( const TQString& mod ); /** * @internal * Unimplemented? */ - KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod ); + KDECORE_EXPORT bool stringToSymMod( const TQString&, uint& sym, uint& mod ); /** * @internal |