diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-26 21:01:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-26 21:01:38 +0900 |
commit | 5e9ef6688e58dccde4be0f0db310987db99d66d7 (patch) | |
tree | 909c595b6c09eb7de9d78bfa303814316600ab26 /src/rip/k3bpatternparser.cpp | |
parent | 4b8cb80dce4b488d36b02d0c1d218676ecd78ac2 (diff) | |
download | k3b-5e9ef6688e58dccde4be0f0db310987db99d66d7.tar.gz k3b-5e9ef6688e58dccde4be0f0db310987db99d66d7.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/rip/k3bpatternparser.cpp')
-rw-r--r-- | src/rip/k3bpatternparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rip/k3bpatternparser.cpp b/src/rip/k3bpatternparser.cpp index fd256a4..286e80b 100644 --- a/src/rip/k3bpatternparser.cpp +++ b/src/rip/k3bpatternparser.cpp @@ -198,7 +198,7 @@ TQString K3bPatternParser::parsePattern( const K3bCddbResultEntry& entry, bool isIncluded; static TQRegExp conditionrx( "^[@|!][atyegrmx](?:='.*')?\\{" ); - conditionrx.setMinimal( TRUE ); + conditionrx.setMinimal( true ); for( unsigned int i = 0; i < dir.length(); ++i ) { @@ -282,7 +282,7 @@ TQString K3bPatternParser::parsePattern( const K3bCddbResultEntry& entry, dir.replace( offset, length, ( isIncluded ? inclusion : TQString("") ) ); - if( isIncluded == TRUE ) + if( isIncluded == true ) i -= length - inclusion.length(); else i = offset - 1; // start next loop at offset |