diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-27 20:55:12 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-27 20:55:12 -0600 |
commit | 992df30f3c50b5439c2b5f8621ab6e928d9346eb (patch) | |
tree | acdd3b48b9f30eeda4f94092172ffb3042fca766 /doc/html/tutorial1-08.html | |
parent | 74ce99a42a0dc9d9a168156a2f5d146edb9bb555 (diff) | |
parent | 84f70969d95344d402d6f6152a6373469a3718ca (diff) | |
download | tqt3-992df30f3c50b5439c2b5f8621ab6e928d9346eb.tar.gz tqt3-992df30f3c50b5439c2b5f8621ab6e928d9346eb.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
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>(). |