summaryrefslogtreecommitdiffstats
path: root/lib/libchmfile/libchmfile_search.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-31 15:40:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-31 15:48:52 +0900
commit66dc020d264d1fe4ebe235e5dd7eceb863007d7c (patch)
tree20ec5c89988c1ed470adf0893343f4d9c5119905 /lib/libchmfile/libchmfile_search.cpp
parent0ab7a6fc13973ab74f2116c3260cec68a766f85e (diff)
downloadkchmviewer-66dc020d264d1fe4ebe235e5dd7eceb863007d7c.tar.gz
kchmviewer-66dc020d264d1fe4ebe235e5dd7eceb863007d7c.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/libchmfile/libchmfile_search.cpp')
-rw-r--r--lib/libchmfile/libchmfile_search.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libchmfile/libchmfile_search.cpp b/lib/libchmfile/libchmfile_search.cpp
index 928a809..5f3be21 100644
--- a/lib/libchmfile/libchmfile_search.cpp
+++ b/lib/libchmfile/libchmfile_search.cpp
@@ -198,7 +198,7 @@ bool LCHMFile::searchQuery( const TQString& inquery, TQStringList * searchresult
TQRegExp rxphrase( "\"(.*)\"" );
TQRegExp rxword( "([^\\s]+)" );
- rxphrase.setMinimal( TRUE );
+ rxphrase.setMinimal( true );
// First, get the phrase queries
while ( (pos = rxphrase.search (query, 0)) != -1 )