diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:43:45 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 09:12:50 +0900 |
| commit | a3fc822244ed669c7e71ea624429c815b0d6ede2 (patch) | |
| tree | 46be85985705ef17cc05626b2dfdd1c410a85367 /conduits/docconduit/DOC-converter.cpp | |
| parent | 445267d75b91ebdce885a31f325a5bc9c257d268 (diff) | |
| download | kpilot-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.cpp | 2 |
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); |
