summaryrefslogtreecommitdiffstats
path: root/doc/html/tqstring-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqstring-h.html
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-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/tqstring-h.html')
-rw-r--r--doc/html/tqstring-h.html38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/html/tqstring-h.html b/doc/html/tqstring-h.html
index 7ff338d13..6918e5728 100644
--- a/doc/html/tqstring-h.html
+++ b/doc/html/tqstring-h.html
@@ -216,31 +216,31 @@ public:
;
#endif
- int find( TQChar c, int index=0, bool cs=TRUE ) const;
- int find( char c, int index=0, bool cs=TRUE ) const;
- int find( const TQString &amp;str, int index=0, bool cs=TRUE ) const;
+ int find( TQChar c, int index=0, bool cs=true ) const;
+ int find( char c, int index=0, bool cs=true ) const;
+ int find( const TQString &amp;str, int index=0, bool cs=true ) const;
#ifndef TQT_NO_REGEXP
int find( const TQRegExp &amp;, int index=0 ) const;
#endif
#ifndef TQT_NO_CAST_ASCII
int find( const char* str, int index=0 ) const;
#endif
- int findRev( TQChar c, int index=-1, bool cs=TRUE) const;
- int findRev( char c, int index=-1, bool cs=TRUE) const;
- int findRev( const TQString &amp;str, int index=-1, bool cs=TRUE) const;
+ int findRev( TQChar c, int index=-1, bool cs=true) const;
+ int findRev( char c, int index=-1, bool cs=true) const;
+ int findRev( const TQString &amp;str, int index=-1, bool cs=true) const;
#ifndef TQT_NO_REGEXP
int findRev( const TQRegExp &amp;, int index=-1 ) const;
#endif
#ifndef TQT_NO_CAST_ASCII
int findRev( const char* str, int index=-1 ) const;
#endif
- int contains( TQChar c, bool cs=TRUE ) const;
- int contains( char c, bool cs=TRUE ) const
+ int contains( TQChar c, bool cs=true ) const;
+ int contains( char c, bool cs=true ) const
{ return contains(TQChar(c), cs); }
#ifndef TQT_NO_CAST_ASCII
- int contains( const char* str, bool cs=TRUE ) const;
+ int contains( const char* str, bool cs=true ) const;
#endif
- int contains( const TQString &amp;str, bool cs=TRUE ) const;
+ int contains( const TQString &amp;str, bool cs=true ) const;
#ifndef TQT_NO_REGEXP
int contains( const TQRegExp &amp; ) const;
#endif
@@ -266,8 +266,8 @@ public:
TQString right( uint len ) const;
TQString mid( uint index, uint len=0xffffffff) const;
- TQString leftJustify( uint width, TQChar fill=&#039; &#039;, bool trunc=FALSE)const;
- TQString rightJustify( uint width, TQChar fill=&#039; &#039;,bool trunc=FALSE)const;
+ TQString leftJustify( uint width, TQChar fill=&#039; &#039;, bool trunc=false)const;
+ TQString rightJustify( uint width, TQChar fill=&#039; &#039;,bool trunc=false)const;
TQString lower() const;
TQString upper() const;
@@ -305,7 +305,7 @@ public:
#endif
TQString &amp;remove( uint index, uint len );
#if defined(Q_QDOC)
- TQString &amp;remove( const TQString &amp; str, bool cs = TRUE );
+ TQString &amp;remove( const TQString &amp; str, bool cs = true );
#else
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
TQString &amp;remove( const TQString &amp; );
@@ -326,10 +326,10 @@ public:
TQString &amp;replace( uint index, uint len, char c )
{ return replace( index, len, TQChar(c) ); }
#if defined(Q_QDOC)
- TQString &amp;replace( TQChar c, const TQString &amp; after, bool cs = TRUE );
- TQString &amp;replace( char c, const TQString &amp; after, bool cs = TRUE );
+ TQString &amp;replace( TQChar c, const TQString &amp; after, bool cs = true );
+ TQString &amp;replace( char c, const TQString &amp; after, bool cs = true );
TQString &amp;replace( const TQString &amp; before, const TQString &amp; after,
- bool cs = TRUE );
+ bool cs = true );
#else
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
TQString &amp;replace( TQChar c, const TQString &amp; );
@@ -337,7 +337,7 @@ public:
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
TQString &amp;replace( char c, const TQString &amp; after )
- { return replace( TQChar(c), after, TRUE ); }
+ { return replace( TQChar(c), after, true ); }
TQString &amp;replace( char c, const TQString &amp; after, bool cs )
{ return replace( TQChar(c), after, cs ); }
@@ -447,8 +447,8 @@ public:
#endif
#if defined(Q_QDOC)
- bool startsWith( const TQString&amp; str, bool cs = TRUE ) const;
- bool endsWith( const TQString&amp; str, bool cs = TRUE ) const;
+ bool startsWith( const TQString&amp; str, bool cs = true ) const;
+ bool endsWith( const TQString&amp; str, bool cs = true ) const;
#else
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
bool startsWith( const TQString&amp; str ) const;