summaryrefslogtreecommitdiffstats
path: root/doc/html/qcstring-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/qcstring-h.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-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.html16
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 &amp;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 &amp;, 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 &amp;, 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 &amp; ) 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;