summaryrefslogtreecommitdiffstats
path: root/doc/html/tqstring-h.html
diff options
context:
space:
mode:
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 &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 &str, int index=0, bool cs=true ) const;
#ifndef TQT_NO_REGEXP
int find( const TQRegExp &, 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 &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 &str, int index=-1, bool cs=true) const;
#ifndef TQT_NO_REGEXP
int findRev( const TQRegExp &, 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 &str, bool cs=TRUE ) const;
+ int contains( const TQString &str, bool cs=true ) const;
#ifndef TQT_NO_REGEXP
int contains( const TQRegExp & ) 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=' ', bool trunc=FALSE)const;
- TQString rightJustify( uint width, TQChar fill=' ',bool trunc=FALSE)const;
+ TQString leftJustify( uint width, TQChar fill=' ', bool trunc=false)const;
+ TQString rightJustify( uint width, TQChar fill=' ',bool trunc=false)const;
TQString lower() const;
TQString upper() const;
@@ -305,7 +305,7 @@ public:
#endif
TQString &remove( uint index, uint len );
#if defined(Q_QDOC)
- TQString &remove( const TQString & str, bool cs = TRUE );
+ TQString &remove( const TQString & str, bool cs = true );
#else
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
TQString &remove( const TQString & );
@@ -326,10 +326,10 @@ public:
TQString &replace( uint index, uint len, char c )
{ return replace( index, len, TQChar(c) ); }
#if defined(Q_QDOC)
- TQString &replace( TQChar c, const TQString & after, bool cs = TRUE );
- TQString &replace( char c, const TQString & after, bool cs = TRUE );
+ TQString &replace( TQChar c, const TQString & after, bool cs = true );
+ TQString &replace( char c, const TQString & after, bool cs = true );
TQString &replace( const TQString & before, const TQString & after,
- bool cs = TRUE );
+ bool cs = true );
#else
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
TQString &replace( TQChar c, const TQString & );
@@ -337,7 +337,7 @@ public:
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
TQString &replace( char c, const TQString & after )
- { return replace( TQChar(c), after, TRUE ); }
+ { return replace( TQChar(c), after, true ); }
TQString &replace( char c, const TQString & after, bool cs )
{ return replace( TQChar(c), after, cs ); }
@@ -447,8 +447,8 @@ public:
#endif
#if defined(Q_QDOC)
- bool startsWith( const TQString& str, bool cs = TRUE ) const;
- bool endsWith( const TQString& str, bool cs = TRUE ) const;
+ bool startsWith( const TQString& str, bool cs = true ) const;
+ bool endsWith( const TQString& str, bool cs = true ) const;
#else
// ### TQt 4.0: merge these two into one, and remove Q_QDOC hack
bool startsWith( const TQString& str ) const;