diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-04 13:24:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-04 21:11:58 +0900 |
commit | 2d2a66210c4827dd2469d4fde55bf2c9aab81b5a (patch) | |
tree | 8a1b99c230b11fb6e679434055553504620119c7 /pytqlupdate3/metatranslator.h | |
parent | f89d120a2d4982896f0b5c00cee347a010f609a9 (diff) | |
download | pytqt-r14.1.4.tar.gz pytqt-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 6cbdd25dc4c6b0987636b37b2046b1b9464e3d60)
Diffstat (limited to 'pytqlupdate3/metatranslator.h')
-rw-r--r-- | pytqlupdate3/metatranslator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pytqlupdate3/metatranslator.h b/pytqlupdate3/metatranslator.h index aab280f..abe0293 100644 --- a/pytqlupdate3/metatranslator.h +++ b/pytqlupdate3/metatranslator.h @@ -33,7 +33,7 @@ public: MetaTranslatorMessage( const char *context, const char *sourceText, const char *comment, const TQString& translation = TQString::null, - bool utf8 = FALSE, Type type = Unfinished ); + bool utf8 = false, Type type = Unfinished ); MetaTranslatorMessage( const MetaTranslatorMessage& m ); MetaTranslatorMessage& operator=( const MetaTranslatorMessage& m ); @@ -68,7 +68,7 @@ public: bool load( const TQString& filename ); bool save( const TQString& filename ) const; - bool release( const TQString& filename, bool verbose = FALSE ) const; + bool release( const TQString& filename, bool verbose = false ) const; bool contains( const char *context, const char *sourceText, const char *comment ) const; |