diff options
Diffstat (limited to 'doc/html/ntqcstring.html')
| -rw-r--r-- | doc/html/ntqcstring.html | 158 |
1 files changed, 79 insertions, 79 deletions
diff --git a/doc/html/ntqcstring.html b/doc/html/ntqcstring.html index ad5025861..170397da9 100644 --- a/doc/html/ntqcstring.html +++ b/doc/html/ntqcstring.html @@ -55,20 +55,20 @@ zero-terminated char array (char *). <li class=fn>bool <a href="#fill"><b>fill</b></a> ( char c, int len = -1 )</li> <li class=fn>TQCString <a href="#copy"><b>copy</b></a> () const</li> <li class=fn>TQCString & <a href="#sprintf"><b>sprintf</b></a> ( const char * format, ... )</li> -<li class=fn>int <a href="#find"><b>find</b></a> ( char c, int index = 0, bool cs = TRUE ) const</li> -<li class=fn>int <a href="#find-2"><b>find</b></a> ( const char * str, int index = 0, bool cs = TRUE ) const</li> +<li class=fn>int <a href="#find"><b>find</b></a> ( char c, int index = 0, bool cs = true ) const</li> +<li class=fn>int <a href="#find-2"><b>find</b></a> ( const char * str, int index = 0, bool cs = true ) const</li> <li class=fn>int <a href="#find-3"><b>find</b></a> ( const TQRegExp & rx, int index = 0 ) const</li> -<li class=fn>int <a href="#findRev"><b>findRev</b></a> ( char c, int index = -1, bool cs = TRUE ) const</li> -<li class=fn>int <a href="#findRev-2"><b>findRev</b></a> ( const char * str, int index = -1, bool cs = TRUE ) const</li> +<li class=fn>int <a href="#findRev"><b>findRev</b></a> ( char c, int index = -1, bool cs = true ) const</li> +<li class=fn>int <a href="#findRev-2"><b>findRev</b></a> ( const char * str, int index = -1, bool cs = true ) const</li> <li class=fn>int <a href="#findRev-3"><b>findRev</b></a> ( const TQRegExp & rx, int index = -1 ) const</li> -<li class=fn>int <a href="#contains"><b>contains</b></a> ( char c, bool cs = TRUE ) const</li> -<li class=fn>int <a href="#contains-2"><b>contains</b></a> ( const char * str, bool cs = TRUE ) const</li> +<li class=fn>int <a href="#contains"><b>contains</b></a> ( char c, bool cs = true ) const</li> +<li class=fn>int <a href="#contains-2"><b>contains</b></a> ( const char * str, bool cs = true ) const</li> <li class=fn>int <a href="#contains-3"><b>contains</b></a> ( const TQRegExp & rx ) const</li> <li class=fn>TQCString <a href="#left"><b>left</b></a> ( uint len ) const</li> <li class=fn>TQCString <a href="#right"><b>right</b></a> ( uint len ) const</li> <li class=fn>TQCString <a href="#mid"><b>mid</b></a> ( uint index, uint len = 0xffffffff ) const</li> -<li class=fn>TQCString <a href="#leftJustify"><b>leftJustify</b></a> ( uint width, char fill = ' ', bool truncate = FALSE ) const</li> -<li class=fn>TQCString <a href="#rightJustify"><b>rightJustify</b></a> ( uint width, char fill = ' ', bool truncate = FALSE ) const</li> +<li class=fn>TQCString <a href="#leftJustify"><b>leftJustify</b></a> ( uint width, char fill = ' ', bool truncate = false ) const</li> +<li class=fn>TQCString <a href="#rightJustify"><b>rightJustify</b></a> ( uint width, char fill = ' ', bool 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> @@ -259,20 +259,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 c, bool cs = TRUE ) const +<h3 class=fn>int <a name="contains"></a>TQCString::contains ( char c, bool 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 char * str, bool cs = TRUE ) const +<h3 class=fn>int <a name="contains-2"></a>TQCString::contains ( const char * str, bool 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>. @@ -284,7 +284,7 @@ This is an overloaded member function, provided for convenience. It behaves esse <p> Example: <pre> <a href="ntqstring.html">TQString</a> s = "banana and panama"; - <a href="ntqregexp.html">TQRegExp</a> r = TQRegExp( "a[nm]a", TRUE, FALSE ); + <a href="ntqregexp.html">TQRegExp</a> r = TQRegExp( "a[nm]a", true, false ); s.<a href="ntqstring.html#contains">contains</a>( r ); // 4 matches </pre> @@ -305,26 +305,26 @@ apply the function to that. Fills the string with <em>len</em> bytes of character <em>c</em>, followed by a '\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 c, int index = 0, bool cs = TRUE ) const +<h3 class=fn>int <a name="find"></a>TQCString::find ( char c, int index = 0, bool 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 char * str, int index = 0, bool cs = TRUE ) const +<h3 class=fn>int <a name="find-2"></a>TQCString::find ( const char * str, int index = 0, bool 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>. @@ -340,22 +340,22 @@ found. string it is more efficient to convert the string to a <a href="ntqstring.html">TQString</a> and apply the function to that. -<h3 class=fn>int <a name="findRev"></a>TQCString::findRev ( char c, int index = -1, bool cs = TRUE ) const +<h3 class=fn>int <a name="findRev"></a>TQCString::findRev ( char c, int index = -1, bool 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 char * str, int index = -1, bool cs = TRUE ) const +<h3 class=fn>int <a name="findRev-2"></a>TQCString::findRev ( const char * str, int index = -1, bool 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>. @@ -405,8 +405,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="ntqmemarray.html#size">size</a>(). @@ -414,16 +414,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="ntqmemarray.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="ntqmemarray.html#data">data</a>() == 0; otherwise +returns false. A null string is also an empty string. <p> Example: <pre> TQCString a; // a.<a href="ntqmemarray.html#data">data</a>() == 0, a.<a href="ntqmemarray.html#size">size</a>() == 0, a.<a href="#length">length</a>() == 0 TQCString b == ""; // b.<a href="ntqmemarray.html#data">data</a>() == "", b.<a href="ntqmemarray.html#size">size</a>() == 1, b.<a href="#length">length</a>() == 0 - a.<a href="#isNull">isNull</a>(); // TRUE because a.<a href="ntqmemarray.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="ntqmemarray.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="ntqmemarray.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="ntqmemarray.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="ntqmemarray.html#size">size</a>(). @@ -443,13 +443,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="ntqcstring.html">TQCString</a> <a name="leftJustify"></a>TQCString::leftJustify ( uint width, char fill = ' ', bool truncate = FALSE ) const +<h3 class=fn><a href="ntqcstring.html">TQCString</a> <a name="leftJustify"></a>TQCString::leftJustify ( uint width, char fill = ' ', bool truncate = false ) const </h3> Returns a string of length <em>width</em> (plus one for the terminating '\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"); @@ -637,14 +637,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="ntqcstring.html">TQCString</a> <a name="rightJustify"></a>TQCString::rightJustify ( uint width, char fill = ' ', bool truncate = FALSE ) const +<h3 class=fn><a href="ntqcstring.html">TQCString</a> <a name="rightJustify"></a>TQCString::rightJustify ( uint width, char fill = ' ', bool truncate = false ) const </h3> Returns a string of length <em>width</em> (plus one for the terminating '\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"); @@ -657,8 +657,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="ntqcstring.html">TQCString</a> & <a name="setNum"></a>TQCString::setNum ( double n, char f = 'g', int prec = 6 ) </h3> @@ -769,58 +769,58 @@ and the end. <h3 class=fn>double <a name="toDouble"></a>TQCString::toDouble ( bool * 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 * 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 * 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 * 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 * 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 * 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 * 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 * 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 pos ) </h3> @@ -851,21 +851,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 <a href="ntqcstring.html">TQCString</a> & s1, const char * 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 char * s1, const <a href="ntqcstring.html">TQCString</a> & 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 <a href="ntqcstring.html">TQCString</a> <a name="operator+"></a>operator+ ( const <a href="ntqcstring.html">TQCString</a> & s1, const <a href="ntqcstring.html">TQCString</a> & s2 ) @@ -903,7 +903,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>) < 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -911,7 +911,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>) < 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -925,8 +925,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>) <= 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -934,8 +934,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>) <= 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -943,28 +943,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 <a href="ntqcstring.html">TQCString</a> & s1, const char * 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 char * s1, const <a href="ntqcstring.html">TQCString</a> & 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> ( const <a href="ntqcstring.html">TQCString</a> & s1, const char * 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>) > 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -972,7 +972,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>) > 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -980,8 +980,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>) >= 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. @@ -989,8 +989,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>) >= 0. <p> <p>See also <a href="#asciinotion">Note on character comparisons</a>. |
