summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-08.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-25 14:05:14 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-25 14:05:14 -0600
commitbd87b2af9dde0633e56a792665cdec7a9675da95 (patch)
tree372fc8bc287d9712646388e9543b291a30b9cbd6 /doc/html/tutorial1-08.html
parentc5e69959c9eeb6a1396f1a60d7cf4f9781a2d47c (diff)
downloadtqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.tar.gz
tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.zip
Automated update from Qt3
Diffstat (limited to 'doc/html/tutorial1-08.html')
-rw-r--r--doc/html/tutorial1-08.html4
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 &lt; 0 || maxVal &gt; 99 || minVal &gt; 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>().