summaryrefslogtreecommitdiffstats
path: root/tqt/tqextscintillalexerlua.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/tqextscintillalexerlua.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/tqextscintillalexerlua.cpp')
-rw-r--r--tqt/tqextscintillalexerlua.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tqt/tqextscintillalexerlua.cpp b/tqt/tqextscintillalexerlua.cpp
index 97676fd..1b627bb 100644
--- a/tqt/tqextscintillalexerlua.cpp
+++ b/tqt/tqextscintillalexerlua.cpp
@@ -32,7 +32,7 @@
// The ctor.
TQextScintillaLexerLua::TQextScintillaLexerLua(TQObject *parent, const char *name)
- : TQextScintillaLexer(parent,name), fold_compact(TRUE)
+ : TQextScintillaLexer(parent,name), fold_compact(true)
{
}
@@ -298,16 +298,16 @@ void TQextScintillaLexerLua::refreshProperties()
// Read properties from the settings.
bool TQextScintillaLexerLua::readProperties(TQSettings &qs,const TQString &prefix)
{
- int rc = TRUE;
+ bool rc = true;
bool ok, flag;
// Read the fold compact flag.
- flag = qs.readBoolEntry(prefix + "foldcompact",TRUE,&ok);
+ flag = qs.readBoolEntry(prefix + "foldcompact",true,&ok);
if (ok)
fold_compact = flag;
else
- rc = FALSE;
+ rc = false;
return rc;
}
@@ -316,17 +316,17 @@ bool TQextScintillaLexerLua::readProperties(TQSettings &qs,const TQString &prefi
// Write properties to the settings.
bool TQextScintillaLexerLua::writeProperties(TQSettings &qs,const TQString &prefix) const
{
- int rc = TRUE;
+ bool rc = true;
// Write the fold compact flag.
if (!qs.writeEntry(prefix + "foldcompact",fold_compact))
- rc = FALSE;
+ rc = false;
return rc;
}
-// Return TRUE if folds are compact.
+// Return true if folds are compact.
bool TQextScintillaLexerLua::foldCompact() const
{
return fold_compact;