From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/archivesearch-example.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/archivesearch-example.html') diff --git a/doc/html/archivesearch-example.html b/doc/html/archivesearch-example.html index e4f792811..04d3a9a97 100644 --- a/doc/html/archivesearch-example.html +++ b/doc/html/archivesearch-example.html @@ -127,7 +127,7 @@ void ArchiveDialog::searchDone( bool error ) TQString result(articleSearcher.readAll()); TQRegExp rx("<a href=\"(http://lists\\.trolltech\\.com/qt-interest/.*)\">(.*)</a>"); - rx.setMinimal(TRUE); + rx.setMinimal(true); int pos = 0; while (pos >= 0) { pos = rx.search(result, pos); -- cgit v1.2.3