diff options
Diffstat (limited to 'doc/html/tutorial1-08.html')
-rw-r--r-- | doc/html/tutorial1-08.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tutorial1-08.html b/doc/html/tutorial1-08.html index 4586ceab9..bb72603e1 100644 --- a/doc/html/tutorial1-08.html +++ b/doc/html/tutorial1-08.html @@ -63,7 +63,7 @@ Until now, it has been fixed at 0..99. <p> <pre> void LCDRange::setRange( int minVal, int maxVal ) { if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) { - <a href="ntqapplication.html#qWarning">qWarning</a>( "LCDRange::setRange(%d,%d)\n" + <a href="ntqapplication.html#qWarning">tqWarning</a>( "LCDRange::setRange(%d,%d)\n" "\tRange must be 0..99\n" "\tand minVal must not be greater than maxVal", minVal, maxVal ); @@ -77,7 +77,7 @@ have set up the <a href="ntqlcdnumber.html">TQLCDNumber</a> to always display tw limit the possible range of <tt>minVal</tt> and <tt>maxVal</tt> to 0..99 to avoid overflow of the TQLCDNumber. (We could have allowed values down to -9 but chose not to.) If the arguments are illegal, we use TQt's -<a href="ntqapplication.html#qWarning">qWarning</a>() function to issue a warning to the user and return +<a href="ntqapplication.html#qWarning">tqWarning</a>() function to issue a warning to the user and return immediately. tqWarning() is a printf-like function that by default sends its output to <tt>stderr</tt>. If you want, you can install your own handler function using <a href="ntqapplication.html#qInstallMsgHandler">::qInstallMsgHandler</a>(). |