summaryrefslogtreecommitdiffstats
path: root/conduits/docconduit/DOC-converter.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 12:43:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 09:12:50 +0900
commita3fc822244ed669c7e71ea624429c815b0d6ede2 (patch)
tree46be85985705ef17cc05626b2dfdd1c410a85367 /conduits/docconduit/DOC-converter.cpp
parent445267d75b91ebdce885a31f325a5bc9c257d268 (diff)
downloadkpilot-a3fc822244ed669c7e71ea624429c815b0d6ede2.tar.gz
kpilot-a3fc822244ed669c7e71ea624429c815b0d6ede2.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'conduits/docconduit/DOC-converter.cpp')
-rw-r--r--conduits/docconduit/DOC-converter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/conduits/docconduit/DOC-converter.cpp b/conduits/docconduit/DOC-converter.cpp
index e5fa8a4..af70635 100644
--- a/conduits/docconduit/DOC-converter.cpp
+++ b/conduits/docconduit/DOC-converter.cpp
@@ -261,7 +261,7 @@ int DOCConverter::findBmkInline(TQString &text, bmkList &fBmks) {
int nr=0;
TQRegExp rx(CSL1("<\\*(.*)\\*>"));
- rx.setMinimal(TRUE);
+ rx.setMinimal(true);
int pos = 0;
while (pos >= 0) {
pos = rx.search(text, pos);