diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-25 14:05:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-25 14:05:14 -0600 |
commit | bd87b2af9dde0633e56a792665cdec7a9675da95 (patch) | |
tree | 372fc8bc287d9712646388e9543b291a30b9cbd6 /doc/html/debug.html | |
parent | c5e69959c9eeb6a1396f1a60d7cf4f9781a2d47c (diff) | |
download | tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.tar.gz tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.zip |
Automated update from Qt3
Diffstat (limited to 'doc/html/debug.html')
-rw-r--r-- | doc/html/debug.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/debug.html b/doc/html/debug.html index 23c84dd94..0747921ea 100644 --- a/doc/html/debug.html +++ b/doc/html/debug.html @@ -59,10 +59,10 @@ option is only valid for the X11 version of TQt. <a name="2"></a><p> TQt includes three global functions for writing out warning and debug text. <ul> -<li> <a href="ntqapplication.html#qDebug">qDebug()</a> for writing debug output for testing etc. -<li> <a href="ntqapplication.html#qWarning">qWarning()</a> for writing warning output when program +<li> <a href="ntqapplication.html#qDebug">tqDebug()</a> for writing debug output for testing etc. +<li> <a href="ntqapplication.html#qWarning">tqWarning()</a> for writing warning output when program errors occur. -<li> <a href="ntqapplication.html#qFatal">qFatal()</a> for writing fatal error messages +<li> <a href="ntqapplication.html#qFatal">tqFatal()</a> for writing fatal error messages and exiting. </ul> <p> The TQt implementation of these functions prints the text to the <tt>stderr</tt> @@ -141,12 +141,12 @@ define QT_NO_CHECK. { #if defined(QT_CHECK_NULL) if ( p == 0 ) - <a href="ntqapplication.html#qWarning">qWarning</a>( "f: Null pointer not allowed" ); + <a href="ntqapplication.html#qWarning">tqWarning</a>( "f: Null pointer not allowed" ); #endif #if defined(QT_CHECK_RANGE) if ( i < 0 ) - <a href="ntqapplication.html#qWarning">qWarning</a>( "f: The index cannot be negative" ); + <a href="ntqapplication.html#qWarning">tqWarning</a>( "f: The index cannot be negative" ); #endif } </pre> |