summaryrefslogtreecommitdiffstats
path: root/doc/html/debug.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/debug.html')
-rw-r--r--doc/html/debug.html10
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 &lt; 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>