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-28 09:16:50 +0900 |
| commit | baf77040abf0f7c15cae85f54cdfdae45f89b307 (patch) | |
| tree | a552eb1982a1be5bc87d799b23860f4a88ab5272 /src/rip | |
| parent | 39f2157d6d3033db0ced5ef285896267e9fcbfaa (diff) | |
| download | k3b-baf77040.tar.gz k3b-baf77040.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5e9ef6688e58dccde4be0f0db310987db99d66d7)
Diffstat (limited to 'src/rip')
| -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 |
