From bd87b2af9dde0633e56a792665cdec7a9675da95 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 25 Nov 2012 14:05:14 -0600 Subject: Automated update from Qt3 --- doc/html/tutorial1-08.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/tutorial1-08.html') 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.

    void LCDRange::setRange( int minVal, int maxVal )
     {
         if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
-          qWarning( "LCDRange::setRange(%d,%d)\n"
+          tqWarning( "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 TQLCDNumber to always display tw
 limit the possible range of minVal and maxVal 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
-qWarning() function to issue a warning to the user and return
+tqWarning() function to issue a warning to the user and return
 immediately. tqWarning() is a printf-like function that by default
 sends its output to stderr. If you want, you can install your own handler
 function using ::qInstallMsgHandler().
-- 
cgit v1.2.3