summaryrefslogtreecommitdiffstats
path: root/bibletime/backend/cswordldkey.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/backend/cswordldkey.h')
-rw-r--r--bibletime/backend/cswordldkey.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/bibletime/backend/cswordldkey.h b/bibletime/backend/cswordldkey.h
index bd6b6ce..13b2d81 100644
--- a/bibletime/backend/cswordldkey.h
+++ b/bibletime/backend/cswordldkey.h
@@ -18,7 +18,7 @@
#include "cswordmoduleinfo.h"
//Qt includes
-#include <qstring.h>
+#include <tqstring.h>
//Sword includes
#include <swkey.h>
@@ -36,7 +36,7 @@
* CSwordLDKey ldKey(m_module);
* ldKey.key("Adam");
* ldKey.nextEntry();
- * qDebug( QString("The current key is: %1").arg(ldKey.key()));
+ * qDebug( TQString("The current key is: %1").arg(ldKey.key()));
* @endcode
*
* Please not, that the result will be invalid if use the operator const char*
@@ -44,7 +44,7 @@
*
* @code
* CSwordLDKey* key = new CSwordLDKey( lexicon_module );
- * const QString keyname = key->getKey();
+ * const TQString keyname = key->getKey();
* @endcode
*
* @author The BibleTime team
@@ -85,11 +85,11 @@ public:
/**
* Returns the current key as a QString
*/
- virtual const QString key() const;
+ virtual const TQString key() const;
/**
* Set the current key
*/
- virtual const bool key( const QString& newKey );
+ virtual const bool key( const TQString& newKey );
/**
* Returns the current key as a QString
*/
@@ -97,7 +97,7 @@ public:
/**
* Assignment operator for more ease of use of this class.
*/
- virtual CSwordLDKey& operator = (const QString& keyname );
+ virtual CSwordLDKey& operator = (const TQString& keyname );
protected:
/**
* The raw key for direct use with Sword.