diff options
Diffstat (limited to 'python/pykde/extra/kde315/kkeyserver_x11.h')
-rw-r--r-- | python/pykde/extra/kde315/kkeyserver_x11.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/python/pykde/extra/kde315/kkeyserver_x11.h b/python/pykde/extra/kde315/kkeyserver_x11.h index d4589224..48d6c334 100644 --- a/python/pykde/extra/kde315/kkeyserver_x11.h +++ b/python/pykde/extra/kde315/kkeyserver_x11.h @@ -44,7 +44,7 @@ namespace KKeyServer * @param s the description of the symbol * @see toString() */ - Sym( const QString& s ) + Sym( const TQString& s ) { init( s ); } /** @@ -61,7 +61,7 @@ namespace KKeyServer * @return true if succesful, false otherwise * @see toString() */ - bool init( const QString &s ); + bool init( const TQString &s ); /** * Returns the qt key code of the symbol. @@ -72,13 +72,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 @@ -105,9 +105,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& ); }; /** @@ -409,7 +409,7 @@ namespace KKeyServer /** * @internal */ - QString modToStringInternal( uint mod ); + TQString modToStringInternal( uint mod ); /** * Converts the mask of ORed @ref KKey::ModFlag modifiers to a @@ -417,13 +417,13 @@ namespace KKeyServer * @param mod the mask of ORed @ref KKey::ModFlag modifiers * @return the user-readable string */ - QString modToStringUser( uint mod ); + TQString modToStringUser( uint mod ); /** * @internal * Unimplemented? */ - bool stringToSymMod( const QString&, uint& sym, uint& mod ); + bool stringToSymMod( const TQString&, uint& sym, uint& mod ); /** * @internal |