diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:43:24 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 09:12:11 +0900 |
commit | dadec5db2e0816d60fce98ca30da1b008dd05b4c (patch) | |
tree | 0c02c77b79bcfd9c6f98cc5bb6596935dfcfb0bb /kmymoney2/reports/reportstestcommon.cpp | |
parent | cde62dc2652ece3f25d6ab50f3a66cd78f7f10da (diff) | |
download | kmymoney-dadec5db.tar.gz kmymoney-dadec5db.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8ea77e27d61983f4ca5fe73d627fc000712abe9d)
Diffstat (limited to 'kmymoney2/reports/reportstestcommon.cpp')
-rw-r--r-- | kmymoney2/reports/reportstestcommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmymoney2/reports/reportstestcommon.cpp b/kmymoney2/reports/reportstestcommon.cpp index 3175773..674e541 100644 --- a/kmymoney2/reports/reportstestcommon.cpp +++ b/kmymoney2/reports/reportstestcommon.cpp @@ -452,7 +452,7 @@ bool readRCFfromXML( TQValueList<MyMoneyReport>& list, const TQString& filename TQFile f( filename ); f.open( IO_ReadOnly ); TQDomDocument* doc = new TQDomDocument; - if(doc->setContent(&f, FALSE)) + if(doc->setContent(&f, false)) { result = readRCFfromXMLDoc(list,doc); } |