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/tqregexpvalidator.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/tqregexpvalidator.html') diff --git a/doc/html/tqregexpvalidator.html b/doc/html/tqregexpvalidator.html index efca08cf8..403111513 100644 --- a/doc/html/tqregexpvalidator.html +++ b/doc/html/tqregexpvalidator.html @@ -96,7 +96,7 @@ normally be associated with a widget as in the example above. // match most 'readme' files rx.setPattern( "read\\S?me(\.(txt|asc|1st))?" ); - rx.setCaseSensitive( FALSE ); + rx.setCaseSensitive( false ); v.setRegExp( rx ); s = "readme"; v.validate( s, pos ); // Returns Acceptable s = "README.1ST"; v.validate( s, pos ); // Returns Acceptable -- cgit v1.2.3