summaryrefslogtreecommitdiffstats
path: root/src/encoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoder.cpp')
-rw-r--r--src/encoder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/encoder.cpp b/src/encoder.cpp
index 5d04744..a400a47 100644
--- a/src/encoder.cpp
+++ b/src/encoder.cpp
@@ -25,7 +25,7 @@
*
***************************************************************************/
-#include "qstring.h"
+#include "ntqstring.h"
#include "encoder.h"
#define CHAR_TO_HEX(c) ((c) < 0xA ? '0' + (c) : ('A' - 0xA) + (c))
@@ -51,7 +51,7 @@ Encoder::~Encoder() {
* @param str The string to encode
* @return The hex-encoded ASCII string
*/
-const char* Encoder::encode(const QString& str)
+const char* Encoder::encode(const TQString& str)
{
const char* szStr;
int nLen, i, j;
@@ -77,7 +77,7 @@ const char* Encoder::encode(const QString& str)
* @param str The string to decode
* @return The decoded string.
*/
-const char* Encoder::decode(const QString& str)
+const char* Encoder::decode(const TQString& str)
{
const char* szStr;
int nLen, i, j;