From 1d9c18c8a07f4833695c6a2ab978698ae1cc90e7 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:33:13 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/ciscopasswddecoder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ciscopasswddecoder.cpp') 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 -#include +#include #include #include @@ -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) -- cgit v1.2.1