diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-04 13:24:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-05 11:28:53 +0900 |
commit | aa50195215adca66e19a1bbaaa45791a570d4c77 (patch) | |
tree | 3a2f1b4b88fc316e2c3d87b5e83058cb346b2852 /tqt/tqextscintillamacro.cpp | |
parent | 6923f459303f67484c216514ed048333abc931e6 (diff) | |
download | tqscintilla-r14.1.4.tar.gz tqscintilla-r14.1.4.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3f2dc73d5a565121db00f4a0f050a48910b51623)
Diffstat (limited to 'tqt/tqextscintillamacro.cpp')
-rw-r--r-- | tqt/tqextscintillamacro.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tqt/tqextscintillamacro.cpp b/tqt/tqextscintillamacro.cpp index 25ea696..523b3e1 100644 --- a/tqt/tqextscintillamacro.cpp +++ b/tqt/tqextscintillamacro.cpp @@ -67,7 +67,7 @@ void TQextScintillaMacro::clear() // Read a macro from a string. bool TQextScintillaMacro::load(const TQCString &asc) { - bool rc = TRUE; + bool rc = true; macro.clear(); @@ -109,7 +109,7 @@ bool TQextScintillaMacro::load(const TQCString &asc) if (!sp) { - rc = FALSE; + rc = false; break; } @@ -121,7 +121,7 @@ bool TQextScintillaMacro::load(const TQCString &asc) if (ch == '"' || ch <= ' ' || ch >= 0x7f) { - rc = FALSE; + rc = false; break; } @@ -132,7 +132,7 @@ bool TQextScintillaMacro::load(const TQCString &asc) if ((b1 = fromHex(*sp++)) < 0 || (b2 = fromHex(*sp++)) < 0) { - rc = FALSE; + rc = false; break; } |