summaryrefslogtreecommitdiffstats
path: root/tqt/tqextscintillalexerbatch.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-04 13:24:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-04 13:59:21 +0900
commit3f2dc73d5a565121db00f4a0f050a48910b51623 (patch)
tree3a2f1b4b88fc316e2c3d87b5e83058cb346b2852 /tqt/tqextscintillalexerbatch.cpp
parent3c23eba2e71e6aebeb7ff5091fc69d050170e1d1 (diff)
downloadtqscintilla-3f2dc73d5a565121db00f4a0f050a48910b51623.tar.gz
tqscintilla-3f2dc73d5a565121db00f4a0f050a48910b51623.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tqt/tqextscintillalexerbatch.cpp')
-rw-r--r--tqt/tqextscintillalexerbatch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tqt/tqextscintillalexerbatch.cpp b/tqt/tqextscintillalexerbatch.cpp
index 3789d69..3ce40b5 100644
--- a/tqt/tqextscintillalexerbatch.cpp
+++ b/tqt/tqextscintillalexerbatch.cpp
@@ -119,7 +119,7 @@ TQFont TQextScintillaLexerBatch::font(int style) const
case Keyword:
f = TQextScintillaLexer::font(style);
- f.setBold(TRUE);
+ f.setBold(true);
break;
case ExternalCommand:
@@ -128,7 +128,7 @@ TQFont TQextScintillaLexerBatch::font(int style) const
#else
f = TQFont("Bitstream Vera Sans Mono",9);
#endif
- f.setBold(TRUE);
+ f.setBold(true);
break;
default: