summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-08.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-08.html')
-rw-r--r--doc/html/tutorial1-08.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tutorial1-08.html b/doc/html/tutorial1-08.html
index bc6e08409..06c845c60 100644
--- a/doc/html/tutorial1-08.html
+++ b/doc/html/tutorial1-08.html
@@ -62,7 +62,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">tqWarning</a>( "LCDRange::setRange(%d,%d)\n"
+ <a href="tqapplication.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 );
@@ -76,10 +76,10 @@ have set up the <a href="tqlcdnumber.html">TQLCDNumber</a> to always display two
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">tqWarning</a>() function to issue a warning to the user and return
+<a href="tqapplication.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>().
+function using <a href="tqapplication.html#qInstallMsgHandler">::qInstallMsgHandler</a>().
<p> <h3> <a href="t8-cannon-h.html">t8/cannon.h</a>
</h3>
<a name="1-3"></a><p> CannonField is a new custom widget that knows how to display itself.