diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
| commit | b87533f9904c10f24d6b2e8177c00944e3efe15b (patch) | |
| tree | c1106a381c851b51e86004698457aef1211b77be /doc/html/qcstring-h.html | |
| parent | 894037c3e68e1573a34183d936171f8cda5085f3 (diff) | |
| download | tqt-r14.1.x.tar.gz tqt-r14.1.x.zip | |
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qcstring-h.html')
| -rw-r--r-- | doc/html/qcstring-h.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/qcstring-h.html b/doc/html/qcstring-h.html index 533aa0f68..18cd11098 100644 --- a/doc/html/qcstring-h.html +++ b/doc/html/qcstring-h.html @@ -188,18 +188,18 @@ public: TQCString &sprintf( const char *format, ... ); - int find( char c, int index=0, bool cs=TRUE ) const; - int find( const char *str, int index=0, bool cs=TRUE ) const; + int find( char c, int index=0, bool cs=true ) const; + int find( const char *str, int index=0, bool cs=true ) const; #ifndef TQT_NO_REGEXP int find( const TQRegExp &, int index=0 ) const; #endif - int findRev( char c, int index=-1, bool cs=TRUE) const; - int findRev( const char *str, int index=-1, bool cs=TRUE) const; + int findRev( char c, int index=-1, bool cs=true) const; + int findRev( const char *str, int index=-1, bool cs=true) const; #ifndef TQT_NO_REGEXP_CAPTURE int findRev( const TQRegExp &, int index=-1 ) const; #endif - int contains( char c, bool cs=TRUE ) const; - int contains( const char *str, bool cs=TRUE ) const; + int contains( char c, bool cs=true ) const; + int contains( const char *str, bool cs=true ) const; #ifndef TQT_NO_REGEXP int contains( const TQRegExp & ) const; #endif @@ -207,8 +207,8 @@ public: TQCString right( uint len ) const; TQCString mid( uint index, uint len=0xffffffff) const; - TQCString leftJustify( uint width, char fill=' ', bool trunc=FALSE)const; - TQCString rightJustify( uint width, char fill=' ',bool trunc=FALSE)const; + TQCString leftJustify( uint width, char fill=' ', bool trunc=false)const; + TQCString rightJustify( uint width, char fill=' ',bool trunc=false)const; TQCString lower() const; TQCString upper() const; |
