diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-24 21:28:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-31 10:03:10 +0900 |
commit | 030a2248f3630fd0404df98beffc78b5b5ca4c31 (patch) | |
tree | 75d55e7e177ca48e69d59f74181ce37841ecd51b /src/modules/help/index.cpp | |
parent | 17118265cf93b35b0b68e450ea5f43046c1d81c3 (diff) | |
download | kvirc-030a2248f3630fd0404df98beffc78b5b5ca4c31.tar.gz kvirc-030a2248f3630fd0404df98beffc78b5b5ca4c31.zip |
Drop USE_QT4 code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/help/index.cpp')
-rw-r--r-- | src/modules/help/index.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/modules/help/index.cpp b/src/modules/help/index.cpp index f63ca0a..19d7a77 100644 --- a/src/modules/help/index.cpp +++ b/src/modules/help/index.cpp @@ -411,9 +411,7 @@ TQStringList Index::query( const TQStringList &terms, const TQStringList &termSe TQStringList results; -#ifndef COMPILE_USE_QT4 qHeapSort( minDocs ); -#endif if ( termSeq.isEmpty() ) { for ( C = minDocs.begin(); C != minDocs.end(); ++C ) @@ -486,11 +484,7 @@ TQStringList Index::getWildcardTerms( const TQString &term ) TQStringList terms = split( term ); -#ifdef COMPILE_USE_QT4 - TQStringList::Iterator iter; -#else KviValueList<TQString>::iterator iter; -#endif KviPointerHashTableIterator<TQString,Entry> it( dict ); |