diff options
Diffstat (limited to 'src/ciscopasswddecoder.cpp')
-rw-r--r-- | src/ciscopasswddecoder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ciscopasswddecoder.cpp b/src/ciscopasswddecoder.cpp index 771b979..3529373 100644 --- a/src/ciscopasswddecoder.cpp +++ b/src/ciscopasswddecoder.cpp @@ -21,7 +21,7 @@ #include "ciscopasswddecoder.h" #include <tqfile.h> -#include <textstream.h> +#include <tqtextstream.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]).unicode()) == -1) + if (hex2bin_c(TQChar(str[i]).tqunicode()) == -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]).unicode()) << 4 | hex2bin_c(TQChar(str[i*2+1]).unicode()); + p+= hex2bin_c(TQChar(str[i*2]).tqunicode()) << 4 | hex2bin_c(TQChar(str[i*2+1]).tqunicode()); bin = p; if (len) |