diff options
| author | Slávek Banko <slavek.banko@axis.cz> | 2026-02-04 03:41:50 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2026-02-04 03:41:50 +0100 |
| commit | 6e8857434d06e526d2083f0df8cb96c1e8a8952d (patch) | |
| tree | 7bf4ccb757e9996ecd236682374d77e6d4685928 | |
| parent | 3dfa98f584afad7b06226ac24478d1be76dd4206 (diff) | |
| download | kpilot-r14.1.x.tar.gz kpilot-r14.1.x.zip | |
Replace TRUE/FALSE with boolean values true/false.r14.1.x
Part specific to the stable branch.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
| -rw-r--r-- | conduits/docconduit/DOC-converter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conduits/docconduit/DOC-converter.cpp b/conduits/docconduit/DOC-converter.cpp index 862e6af..087b181 100644 --- a/conduits/docconduit/DOC-converter.cpp +++ b/conduits/docconduit/DOC-converter.cpp @@ -149,7 +149,7 @@ DOCConverter::DOCConverter(TQObject *parent, const char *name):TQObject(parent,n FUNCTIONSETUP; docdb=0L; eSortBookmarks=eSortNone; - fBookmarks.setAutoDelete( TRUE ); + fBookmarks.setAutoDelete( true ); } @@ -405,7 +405,7 @@ bool DOCConverter::convertTXTtoPDB() { // Process the bookmarks: find the occurrences of the regexps, and sort them if requested: bmkSortedList pdbBookmarks; - pdbBookmarks.setAutoDelete(TRUE); + pdbBookmarks.setAutoDelete(true); docBookmark*bmk; for (bmk = fBookmarks.first(); bmk; bmk = fBookmarks.next()) { @@ -563,7 +563,7 @@ bool DOCConverter::convertPDBtoTXT() // for the ztxt conduit there might be annotations after the bookmarks, so the upper bound needs to be adapted. int upperBmkRec=docdb->recordCount(); bmkSortedList bmks; - bmks.setAutoDelete(TRUE); + bmks.setAutoDelete(true); for (int i=header.numRecords+1; i<upperBmkRec; ++i) { PilotRecord*rec=docdb->readRecordByIndex(i); |
