diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 13:19:40 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 13:19:41 +0900 |
| commit | f3c7a90bfa0646afefeaa7af84edf625cdadf78d (patch) | |
| tree | 2b3194f56e43728f5bfdb95d7c78b71694d55497 /puic/uic.h | |
| parent | 0e72ac24e5ebb8c31003af380befd215e7509ce1 (diff) | |
| download | libtqt-perl-f3c7a90bfa0646afefeaa7af84edf625cdadf78d.tar.gz libtqt-perl-f3c7a90bfa0646afefeaa7af84edf625cdadf78d.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'puic/uic.h')
| -rw-r--r-- | puic/uic.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ # define TQ_DUMMY_COMPARISON_OPERATOR(C) \ bool operator==( const C& ) const { \ tqWarning( #C"::operator==( const "#C"& ) got called." ); \ - return FALSE; \ + return false; \ } # else # define TQ_DUMMY_COMPARISON_OPERATOR(C) @@ -181,7 +181,7 @@ private: static TQString mkBool( bool b ); static TQString mkBool( const TQString& s ); bool toBool( const TQString& s ); - static TQString fixString( const TQString &str, bool encode = FALSE ); + static TQString fixString( const TQString &str, bool encode = false ); static bool onlyAscii; static TQString mkStdSet( const TQString& prop ); static TQString getComment( const TQDomNode& n ); |
