From 50326e196a9245af21604da7dc3a36eea52784ed Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 26 Dec 2025 14:08:52 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 10 Signed-off-by: Michele Calgaro --- src/widgets/tqsyntaxhighlighter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/widgets/tqsyntaxhighlighter.cpp') diff --git a/src/widgets/tqsyntaxhighlighter.cpp b/src/widgets/tqsyntaxhighlighter.cpp index f124b7ce2..428be11ef 100644 --- a/src/widgets/tqsyntaxhighlighter.cpp +++ b/src/widgets/tqsyntaxhighlighter.cpp @@ -200,10 +200,10 @@ void TQSyntaxHighlighter::rehighlight() while ( s ) { s->invalidate( 0 ); s->state = -1; - s->needPreProcess = TRUE; + s->needPreProcess = true; s = s->next(); } - edit->repaintContents( FALSE ); + edit->repaintContents( false ); } /*! -- cgit v1.2.3