diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:20 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:20 -0600 |
commit | c6611272c2bc4a42580848946c8c5d81bb0409c7 (patch) | |
tree | 0fd5b58844663dfcd00fb2b79cf67dd0fd429c62 /src/modules/help/index.cpp | |
parent | 805c2821ceaddada48b346c6d11bd0dc1351a539 (diff) | |
download | kvirc-c6611272c2bc4a42580848946c8c5d81bb0409c7.tar.gz kvirc-c6611272c2bc4a42580848946c8c5d81bb0409c7.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 805c2821ceaddada48b346c6d11bd0dc1351a539.
Diffstat (limited to 'src/modules/help/index.cpp')
-rwxr-xr-x | src/modules/help/index.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/help/index.cpp b/src/modules/help/index.cpp index 596b0e44..46dc4f22 100755 --- a/src/modules/help/index.cpp +++ b/src/modules/help/index.cpp @@ -5,7 +5,7 @@ #include <tqstringlist.h> #include "kvi_pointerhashtable.h" #include <tqapplication.h> -#include <textstream.h> +#include <tqtextstream.h> #include <ctype.h> @@ -164,7 +164,7 @@ void Index::parseDocument( const TQString &filename, int docNum ) if (text.isNull()) return; bool valid = TRUE; - const TQChar *buf = text.unicode(); + const TQChar *buf = text.tqunicode(); TQChar str[64]; TQChar c = buf[0]; int j = 0; @@ -727,7 +727,7 @@ bool Index::searchForPattern( const TQStringList &patterns, const TQStringList & bool valid = TRUE; - const TQChar *buf = text.unicode(); + const TQChar *buf = text.tqunicode(); TQChar str[64]; |