summaryrefslogtreecommitdiffstats
path: root/doc/html/tqcstring.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqcstring.html')
-rw-r--r--doc/html/tqcstring.html158
1 files changed, 79 insertions, 79 deletions
diff --git a/doc/html/tqcstring.html b/doc/html/tqcstring.html
index 05e830590..1f164c561 100644
--- a/doc/html/tqcstring.html
+++ b/doc/html/tqcstring.html
@@ -54,20 +54,20 @@ zero-terminated char array (char *).
<li class=fn>bool <a href="#fill"><b>fill</b></a> ( char&nbsp;c, int&nbsp;len = -1 )</li>
<li class=fn>TQCString <a href="#copy"><b>copy</b></a> () const</li>
<li class=fn>TQCString &amp; <a href="#sprintf"><b>sprintf</b></a> ( const&nbsp;char&nbsp;*&nbsp;format, ... )</li>
-<li class=fn>int <a href="#find"><b>find</b></a> ( char&nbsp;c, int&nbsp;index = 0, bool&nbsp;cs = TRUE ) const</li>
-<li class=fn>int <a href="#find-2"><b>find</b></a> ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = 0, bool&nbsp;cs = TRUE ) const</li>
+<li class=fn>int <a href="#find"><b>find</b></a> ( char&nbsp;c, int&nbsp;index = 0, bool&nbsp;cs = true ) const</li>
+<li class=fn>int <a href="#find-2"><b>find</b></a> ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = 0, bool&nbsp;cs = true ) const</li>
<li class=fn>int <a href="#find-3"><b>find</b></a> ( const&nbsp;TQRegExp&nbsp;&amp;&nbsp;rx, int&nbsp;index = 0 ) const</li>
-<li class=fn>int <a href="#findRev"><b>findRev</b></a> ( char&nbsp;c, int&nbsp;index = -1, bool&nbsp;cs = TRUE ) const</li>
-<li class=fn>int <a href="#findRev-2"><b>findRev</b></a> ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = -1, bool&nbsp;cs = TRUE ) const</li>
+<li class=fn>int <a href="#findRev"><b>findRev</b></a> ( char&nbsp;c, int&nbsp;index = -1, bool&nbsp;cs = true ) const</li>
+<li class=fn>int <a href="#findRev-2"><b>findRev</b></a> ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = -1, bool&nbsp;cs = true ) const</li>
<li class=fn>int <a href="#findRev-3"><b>findRev</b></a> ( const&nbsp;TQRegExp&nbsp;&amp;&nbsp;rx, int&nbsp;index = -1 ) const</li>
-<li class=fn>int <a href="#contains"><b>contains</b></a> ( char&nbsp;c, bool&nbsp;cs = TRUE ) const</li>
-<li class=fn>int <a href="#contains-2"><b>contains</b></a> ( const&nbsp;char&nbsp;*&nbsp;str, bool&nbsp;cs = TRUE ) const</li>
+<li class=fn>int <a href="#contains"><b>contains</b></a> ( char&nbsp;c, bool&nbsp;cs = true ) const</li>
+<li class=fn>int <a href="#contains-2"><b>contains</b></a> ( const&nbsp;char&nbsp;*&nbsp;str, bool&nbsp;cs = true ) const</li>
<li class=fn>int <a href="#contains-3"><b>contains</b></a> ( const&nbsp;TQRegExp&nbsp;&amp;&nbsp;rx ) const</li>
<li class=fn>TQCString <a href="#left"><b>left</b></a> ( uint&nbsp;len ) const</li>
<li class=fn>TQCString <a href="#right"><b>right</b></a> ( uint&nbsp;len ) const</li>
<li class=fn>TQCString <a href="#mid"><b>mid</b></a> ( uint&nbsp;index, uint&nbsp;len = 0xffffffff ) const</li>
-<li class=fn>TQCString <a href="#leftJustify"><b>leftJustify</b></a> ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = FALSE ) const</li>
-<li class=fn>TQCString <a href="#rightJustify"><b>rightJustify</b></a> ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = FALSE ) const</li>
+<li class=fn>TQCString <a href="#leftJustify"><b>leftJustify</b></a> ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = false ) const</li>
+<li class=fn>TQCString <a href="#rightJustify"><b>rightJustify</b></a> ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = false ) const</li>
<li class=fn>TQCString <a href="#lower"><b>lower</b></a> () const</li>
<li class=fn>TQCString <a href="#upper"><b>upper</b></a> () const</li>
<li class=fn>TQCString <a href="#stripWhiteSpace"><b>stripWhiteSpace</b></a> () const</li>
@@ -258,20 +258,20 @@ null string is created.
<p> Appends string <em>str</em> to the string and returns a reference to the
string. Equivalent to <a href="#operator+-eq">operator+=</a>().
-<h3 class=fn>int <a name="contains"></a>TQCString::contains ( char&nbsp;c, bool&nbsp;cs = TRUE ) const
+<h3 class=fn>int <a name="contains"></a>TQCString::contains ( char&nbsp;c, bool&nbsp;cs = true ) const
</h3>
Returns the number of times the character <em>c</em> occurs in the
string.
-<p> The match is case sensitive if <em>cs</em> is TRUE, or case insensitive
-if <em>cs</em> if FALSE.
+<p> The match is case sensitive if <em>cs</em> is true, or case insensitive
+if <em>cs</em> if false.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
-<h3 class=fn>int <a name="contains-2"></a>TQCString::contains ( const&nbsp;char&nbsp;*&nbsp;str, bool&nbsp;cs = TRUE ) const
+<h3 class=fn>int <a name="contains-2"></a>TQCString::contains ( const&nbsp;char&nbsp;*&nbsp;str, bool&nbsp;cs = true ) const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns the number of times <em>str</em> occurs in the string.
-<p> The match is case sensitive if <em>cs</em> is TRUE, or case insensitive
-if <em>cs</em> if FALSE.
+<p> The match is case sensitive if <em>cs</em> is true, or case insensitive
+if <em>cs</em> if false.
<p> This function counts overlapping substrings, for example, "banana"
contains two occurrences of "ana".
<p> <p>See also <a href="#findRev">findRev</a>() and <a href="#asciinotion">Note on character comparisons</a>.
@@ -283,7 +283,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
<p> Example:
<pre>
<a href="tqstring.html">TQString</a> s = "banana and panama";
- <a href="tqregexp.html">TQRegExp</a> r = TQRegExp( "a[nm]a", TRUE, FALSE );
+ <a href="tqregexp.html">TQRegExp</a> r = TQRegExp( "a[nm]a", true, false );
s.<a href="tqstring.html#contains">contains</a>( r ); // 4 matches
</pre>
@@ -304,26 +304,26 @@ apply the function to that.
Fills the string with <em>len</em> bytes of character <em>c</em>, followed by
a '&#92;0'-terminator.
<p> If <em>len</em> is negative, then the current string length is used.
-<p> Returns FALSE is <em>len</em> is nonnegative and there is not enough
-memory to resize the string; otherwise returns TRUE.
+<p> Returns false is <em>len</em> is nonnegative and there is not enough
+memory to resize the string; otherwise returns true.
-<h3 class=fn>int <a name="find"></a>TQCString::find ( char&nbsp;c, int&nbsp;index = 0, bool&nbsp;cs = TRUE ) const
+<h3 class=fn>int <a name="find"></a>TQCString::find ( char&nbsp;c, int&nbsp;index = 0, bool&nbsp;cs = true ) const
</h3>
Finds the first occurrence of the character <em>c</em>, starting at
position <em>index</em>.
-<p> The search is case sensitive if <em>cs</em> is TRUE, or case insensitive
-if <em>cs</em> is FALSE.
+<p> The search is case sensitive if <em>cs</em> is true, or case insensitive
+if <em>cs</em> is false.
<p> Returns the position of <em>c</em>, or -1 if <em>c</em> could not be found.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
<p>Example: <a href="networkprotocol-example.html#x663">network/networkprotocol/nntp.cpp</a>.
-<h3 class=fn>int <a name="find-2"></a>TQCString::find ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = 0, bool&nbsp;cs = TRUE ) const
+<h3 class=fn>int <a name="find-2"></a>TQCString::find ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = 0, bool&nbsp;cs = true ) const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Finds the first occurrence of the string <em>str</em>, starting at
position <em>index</em>.
-<p> The search is case sensitive if <em>cs</em> is TRUE, or case insensitive
-if <em>cs</em> is FALSE.
+<p> The search is case sensitive if <em>cs</em> is true, or case insensitive
+if <em>cs</em> is false.
<p> Returns the position of <em>str</em>, or -1 if <em>str</em> could not be
found.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -339,22 +339,22 @@ found.
string it is more efficient to convert the string to a <a href="tqstring.html">TQString</a> and
apply the function to that.
-<h3 class=fn>int <a name="findRev"></a>TQCString::findRev ( char&nbsp;c, int&nbsp;index = -1, bool&nbsp;cs = TRUE ) const
+<h3 class=fn>int <a name="findRev"></a>TQCString::findRev ( char&nbsp;c, int&nbsp;index = -1, bool&nbsp;cs = true ) const
</h3>
Finds the first occurrence of the character <em>c</em>, starting at
position <em>index</em> and searching backwards.
-<p> The search is case sensitive if <em>cs</em> is TRUE, or case insensitive
-if <em>cs</em> is FALSE.
+<p> The search is case sensitive if <em>cs</em> is true, or case insensitive
+if <em>cs</em> is false.
<p> Returns the position of <em>c</em>, or -1 if <em>c</em> could not be found.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
-<h3 class=fn>int <a name="findRev-2"></a>TQCString::findRev ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = -1, bool&nbsp;cs = TRUE ) const
+<h3 class=fn>int <a name="findRev-2"></a>TQCString::findRev ( const&nbsp;char&nbsp;*&nbsp;str, int&nbsp;index = -1, bool&nbsp;cs = true ) const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Finds the first occurrence of the string <em>str</em>, starting at
position <em>index</em> and searching backwards.
-<p> The search is case sensitive if <em>cs</em> is TRUE, or case insensitive
-if <em>cs</em> is FALSE.
+<p> The search is case sensitive if <em>cs</em> is true, or case insensitive
+if <em>cs</em> is false.
<p> Returns the position of <em>str</em>, or -1 if <em>str</em> could not be
found.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -404,8 +404,8 @@ is appended.
<h3 class=fn>bool <a name="isEmpty"></a>TQCString::isEmpty () const
</h3>
-<p> Returns TRUE if the string is empty, i.e. if <a href="#length">length</a>() == 0;
-otherwise returns FALSE. An empty string is not always a null
+<p> Returns true if the string is empty, i.e. if <a href="#length">length</a>() == 0;
+otherwise returns false. An empty string is not always a null
string.
<p> See example in <a href="#isNull">isNull</a>().
<p> <p>See also <a href="#isNull">isNull</a>(), <a href="#length">length</a>(), and <a href="tqmemarray.html#size">size</a>().
@@ -413,16 +413,16 @@ string.
<h3 class=fn>bool <a name="isNull"></a>TQCString::isNull () const
</h3>
-<p> Returns TRUE if the string is null, i.e. if <a href="tqmemarray.html#data">data</a>() == 0; otherwise
-returns FALSE. A null string is also an empty string.
+<p> Returns true if the string is null, i.e. if <a href="tqmemarray.html#data">data</a>() == 0; otherwise
+returns false. A null string is also an empty string.
<p> Example:
<pre>
TQCString a; // a.<a href="tqmemarray.html#data">data</a>() == 0, a.<a href="tqmemarray.html#size">size</a>() == 0, a.<a href="#length">length</a>() == 0
TQCString b == ""; // b.<a href="tqmemarray.html#data">data</a>() == "", b.<a href="tqmemarray.html#size">size</a>() == 1, b.<a href="#length">length</a>() == 0
- a.<a href="#isNull">isNull</a>(); // TRUE because a.<a href="tqmemarray.html#data">data</a>() == 0
- a.<a href="#isEmpty">isEmpty</a>(); // TRUE because a.<a href="#length">length</a>() == 0
- b.<a href="#isNull">isNull</a>(); // FALSE because b.<a href="tqmemarray.html#data">data</a>() == ""
- b.<a href="#isEmpty">isEmpty</a>(); // TRUE because b.<a href="#length">length</a>() == 0
+ a.<a href="#isNull">isNull</a>(); // true because a.<a href="tqmemarray.html#data">data</a>() == 0
+ a.<a href="#isEmpty">isEmpty</a>(); // true because a.<a href="#length">length</a>() == 0
+ b.<a href="#isNull">isNull</a>(); // false because b.<a href="tqmemarray.html#data">data</a>() == ""
+ b.<a href="#isEmpty">isEmpty</a>(); // true because b.<a href="#length">length</a>() == 0
</pre>
<p> <p>See also <a href="#isEmpty">isEmpty</a>(), <a href="#length">length</a>(), and <a href="tqmemarray.html#size">size</a>().
@@ -442,13 +442,13 @@ string.
<p> <p>See also <a href="#right">right</a>() and <a href="#mid">mid</a>().
<p>Example: <a href="networkprotocol-example.html#x664">network/networkprotocol/nntp.cpp</a>.
-<h3 class=fn><a href="tqcstring.html">TQCString</a> <a name="leftJustify"></a>TQCString::leftJustify ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = FALSE ) const
+<h3 class=fn><a href="tqcstring.html">TQCString</a> <a name="leftJustify"></a>TQCString::leftJustify ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = false ) const
</h3>
Returns a string of length <em>width</em> (plus one for the terminating
'&#92;0') that contains this string padded with the <em>fill</em> character.
<p> If the length of the string exceeds <em>width</em> and <em>truncate</em> is
-FALSE (the default), then the returned string is a copy of the
-string. If the length of the string exceeds <em>width</em> and <em>truncate</em> is TRUE, then the returned string is a <a href="#left">left</a>(<em>width</em>).
+false (the default), then the returned string is a copy of the
+string. If the length of the string exceeds <em>width</em> and <em>truncate</em> is true, then the returned string is a <a href="#left">left</a>(<em>width</em>).
<p> Example:
<pre>
TQCString s("apple");
@@ -636,14 +636,14 @@ string.
<p> <p>See also <a href="#left">left</a>() and <a href="#mid">mid</a>().
<p>Example: <a href="networkprotocol-example.html#x669">network/networkprotocol/nntp.cpp</a>.
-<h3 class=fn><a href="tqcstring.html">TQCString</a> <a name="rightJustify"></a>TQCString::rightJustify ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = FALSE ) const
+<h3 class=fn><a href="tqcstring.html">TQCString</a> <a name="rightJustify"></a>TQCString::rightJustify ( uint&nbsp;width, char&nbsp;fill = ' ', bool&nbsp;truncate = false ) const
</h3>
Returns a string of length <em>width</em> (plus one for the terminating
'&#92;0') that contains zero or more of the <em>fill</em> character followed
by this string.
<p> If the length of the string exceeds <em>width</em> and <em>truncate</em> is
-FALSE (the default), then the returned string is a copy of the
-string. If the length of the string exceeds <em>width</em> and <em>truncate</em> is TRUE, then the returned string is a <a href="#left">left</a>(<em>width</em>).
+false (the default), then the returned string is a copy of the
+string. If the length of the string exceeds <em>width</em> and <em>truncate</em> is true, then the returned string is a <a href="#left">left</a>(<em>width</em>).
<p> Example:
<pre>
TQCString s("pie");
@@ -656,8 +656,8 @@ string. If the length of the string exceeds <em>width</em> and <em>truncate</em>
</h3>
Sets the character at position <em>index</em> to <em>c</em> and expands the
string if necessary, padding with spaces.
-<p> Returns FALSE if <em>index</em> was out of range and the string could
-not be expanded; otherwise returns TRUE.
+<p> Returns false if <em>index</em> was out of range and the string could
+not be expanded; otherwise returns true.
<h3 class=fn><a href="tqcstring.html">TQCString</a>&nbsp;&amp; <a name="setNum"></a>TQCString::setNum ( double&nbsp;n, char&nbsp;f = 'g', int&nbsp;prec = 6 )
</h3>
@@ -768,58 +768,58 @@ and the end.
<h3 class=fn>double <a name="toDouble"></a>TQCString::toDouble ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to a <tt>double</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, or if it has trailing garbage; otherwise <em>*ok</em> is set to
-TRUE.
+true.
<h3 class=fn>float <a name="toFloat"></a>TQCString::toFloat ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to a <tt>float</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, or if it has trailing garbage; otherwise <em>*ok</em> is set to
-TRUE.
+true.
<h3 class=fn>int <a name="toInt"></a>TQCString::toInt ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to a <tt>int</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, or if it has trailing garbage; otherwise <em>*ok</em> is set to
-TRUE.
+true.
<h3 class=fn>long <a name="toLong"></a>TQCString::toLong ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to a <tt>long</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, or if it has trailing garbage; otherwise <em>*ok</em> is set to
-TRUE.
+true.
<h3 class=fn>short <a name="toShort"></a>TQCString::toShort ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to a <tt>short</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, is out of range, or if it has trailing garbage; otherwise
-<em>*ok</em> is set to TRUE.
+<em>*ok</em> is set to true.
<h3 class=fn>uint <a name="toUInt"></a>TQCString::toUInt ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to an <tt>unsigned int</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, or if it has trailing garbage; otherwise <em>*ok</em> is set to
-TRUE.
+true.
<h3 class=fn>ulong <a name="toULong"></a>TQCString::toULong ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to an <tt>unsigned long</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, or if it has trailing garbage; otherwise <em>*ok</em> is set to
-TRUE.
+true.
<h3 class=fn>ushort <a name="toUShort"></a>TQCString::toUShort ( bool&nbsp;*&nbsp;ok = 0 ) const
</h3>
Returns the string converted to an <tt>unsigned short</tt> value.
-<p> If <em>ok</em> is not 0: <em>*ok</em> is set to FALSE if the string is not a
+<p> If <em>ok</em> is not 0: <em>*ok</em> is set to false if the string is not a
number, is out of range, or if it has trailing garbage; otherwise
-<em>*ok</em> is set to TRUE.
+<em>*ok</em> is set to true.
<h3 class=fn>bool <a name="truncate"></a>TQCString::truncate ( uint&nbsp;pos )
</h3>
@@ -850,21 +850,21 @@ Returns a new string that is a copy of this string converted to upper case.
</h3>
<p>
-<p> Returns TRUE if <em>s1</em> and <em>s2</em> are different; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> and <em>s2</em> are different; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) != 0.
<h3 class=fn>bool <a name="operator!-eq-2"></a>operator!= ( const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s1, const&nbsp;char&nbsp;*&nbsp;s2 )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> and <em>s2</em> are different; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> and <em>s2</em> are different; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) != 0.
<h3 class=fn>bool <a name="operator!-eq-3"></a>operator!= ( const&nbsp;char&nbsp;*&nbsp;s1, const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s2 )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> and <em>s2</em> are different; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> and <em>s2</em> are different; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) != 0.
<h3 class=fn>const&nbsp;<a href="tqcstring.html">TQCString</a> <a name="operator+"></a>operator+ ( const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s1, const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s2 )
@@ -902,7 +902,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
</h3>
<p>
-<p> Returns TRUE if <em>s1</em> is less than <em>s2</em>; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> is less than <em>s2</em>; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &lt; 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -910,7 +910,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> is less than <em>s2</em>; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> is less than <em>s2</em>; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &lt; 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -924,8 +924,8 @@ This is an overloaded member function, provided for convenience. It behaves esse
</h3>
<p>
-<p> Returns TRUE if <em>s1</em> is less than or equal to <em>s2</em>; otherwise
-returns FALSE.
+<p> Returns true if <em>s1</em> is less than or equal to <em>s2</em>; otherwise
+returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &lt;= 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -933,8 +933,8 @@ returns FALSE.
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> is less than or equal to <em>s2</em>; otherwise
-returns FALSE.
+<p> Returns true if <em>s1</em> is less than or equal to <em>s2</em>; otherwise
+returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &lt;= 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -942,28 +942,28 @@ returns FALSE.
</h3>
<p>
-<p> Returns TRUE if <em>s1</em> and <em>s2</em> are equal; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> and <em>s2</em> are equal; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) == 0.
<h3 class=fn>bool <a name="operator-eq-eq-2"></a>operator== ( const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s1, const&nbsp;char&nbsp;*&nbsp;s2 )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> and <em>s2</em> are equal; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> and <em>s2</em> are equal; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) == 0.
<h3 class=fn>bool <a name="operator-eq-eq-3"></a>operator== ( const&nbsp;char&nbsp;*&nbsp;s1, const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s2 )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> and <em>s2</em> are equal; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> and <em>s2</em> are equal; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) == 0.
<h3 class=fn>bool <a name="operator-gt"></a>operator&gt; ( const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s1, const&nbsp;char&nbsp;*&nbsp;s2 )
</h3>
<p>
-<p> Returns TRUE if <em>s1</em> is greater than <em>s2</em>; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> is greater than <em>s2</em>; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &gt; 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -971,7 +971,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> is greater than <em>s2</em>; otherwise returns FALSE.
+<p> Returns true if <em>s1</em> is greater than <em>s2</em>; otherwise returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &gt; 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -979,8 +979,8 @@ This is an overloaded member function, provided for convenience. It behaves esse
</h3>
<p>
-<p> Returns TRUE if <em>s1</em> is greater than or equal to <em>s2</em>; otherwise
-returns FALSE.
+<p> Returns true if <em>s1</em> is greater than or equal to <em>s2</em>; otherwise
+returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &gt;= 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.
@@ -988,8 +988,8 @@ returns FALSE.
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p>
-<p> Returns TRUE if <em>s1</em> is greater than or equal to <em>s2</em>; otherwise
-returns FALSE.
+<p> Returns true if <em>s1</em> is greater than or equal to <em>s2</em>; otherwise
+returns false.
<p> Equivalent to <a href="#qstrcmp">qstrcmp</a>(<em>s1</em>, <em>s2</em>) &gt;= 0.
<p> <p>See also <a href="#asciinotion">Note on character comparisons</a>.