summaryrefslogtreecommitdiffstats
path: root/src/ciscopasswddecoder.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:33:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:33:13 -0600
commit1d9c18c8a07f4833695c6a2ab978698ae1cc90e7 (patch)
treec61f8778c1c540d79ed77c3f69018fcba0bca646 /src/ciscopasswddecoder.cpp
parent2622d5ad003c636cda4bc36246df8a7fe9ac5d9f (diff)
downloadkvpnc-1d9c18c8a07f4833695c6a2ab978698ae1cc90e7.tar.gz
kvpnc-1d9c18c8a07f4833695c6a2ab978698ae1cc90e7.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/ciscopasswddecoder.cpp')
-rw-r--r--src/ciscopasswddecoder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ciscopasswddecoder.cpp b/src/ciscopasswddecoder.cpp
index 3529373..771b979 100644
--- a/src/ciscopasswddecoder.cpp
+++ b/src/ciscopasswddecoder.cpp
@@ -21,7 +21,7 @@
#include "ciscopasswddecoder.h"
#include <tqfile.h>
-#include <tqtextstream.h>
+#include <textstream.h>
#include <kmessagebox.h>
#include <klocale.h>
@@ -78,7 +78,7 @@ TQString p;
int i, l;
for (i = 0; str[i] != '\0'; i++)
- if (hex2bin_c(TQChar(str[i]).tqunicode()) == -1)
+ if (hex2bin_c(TQChar(str[i]).unicode()) == -1)
return EINVAL;
l = i;
@@ -87,7 +87,7 @@ TQString p;
l /= 2;
for (i = 0; i < l; i++)
- p+= hex2bin_c(TQChar(str[i*2]).tqunicode()) << 4 | hex2bin_c(TQChar(str[i*2+1]).tqunicode());
+ p+= hex2bin_c(TQChar(str[i*2]).unicode()) << 4 | hex2bin_c(TQChar(str[i*2+1]).unicode());
bin = p;
if (len)