diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-26 14:08:52 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-27 22:38:28 +0900 |
| commit | 50326e196a9245af21604da7dc3a36eea52784ed (patch) | |
| tree | 955f50c739379c59d3846c5c6ec25c8f5856fb91 /src/widgets/tqsyntaxhighlighter.cpp | |
| parent | 854c5d5c9cfd48a2d5a17366fb6805219eab4859 (diff) | |
| download | tqt-50326e196a9245af21604da7dc3a36eea52784ed.tar.gz tqt-50326e196a9245af21604da7dc3a36eea52784ed.zip | |
Replace TRUE/FALSE with boolean values true/false - part 10
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/widgets/tqsyntaxhighlighter.cpp')
| -rw-r--r-- | src/widgets/tqsyntaxhighlighter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 ); } /*! |
