diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqcstring-h.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqcstring-h.html')
-rw-r--r-- | doc/html/tqcstring-h.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tqcstring-h.html b/doc/html/tqcstring-h.html index 3c3b6f3ef..e405f64d6 100644 --- a/doc/html/tqcstring-h.html +++ b/doc/html/tqcstring-h.html @@ -187,18 +187,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 @@ -206,8 +206,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; |