diff options
Diffstat (limited to 'bibletime/backend/cswordtreekey.h')
-rw-r--r-- | bibletime/backend/cswordtreekey.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bibletime/backend/cswordtreekey.h b/bibletime/backend/cswordtreekey.h index 7ba563d..b353fe1 100644 --- a/bibletime/backend/cswordtreekey.h +++ b/bibletime/backend/cswordtreekey.h @@ -45,27 +45,27 @@ public: */ virtual CSwordTreeKey* copy() const; /** - * Returns the last part of the current key as unicode decoded QString. + * Returns the last part of the current key as unicode decoded TQString. * Use this instead of TreeKeyIdx::getLocalName() to avoid encoding problems. */ - virtual const QString getLocalNameUnicode() const; + virtual const TQString getLocalNameUnicode() const; /** * Returns the current key */ - virtual const QString key() const; + virtual const TQString key() const; /** * Set the key. If the parameter is empty or null, the key will be set to "/" */ - virtual const bool key( const QString& key ); + virtual const bool key( const TQString& key ); /** - * Set/get the key. If the parameter is not set (means equal to QString::null) + * Set/get the key. If the parameter is not set (means equal to TQString::null) * the used key is returned. Otherwise the key is set and the new on ei returned. */ virtual const bool key( const char* key ); /** * Assignment operator. */ - virtual CSwordTreeKey& operator = (const QString& keyname ); + virtual CSwordTreeKey& operator = (const TQString& keyname ); protected: /**Get the unencoded key for use by Sword.*/ virtual const char * rawKey() const; |