summaryrefslogtreecommitdiffstats
path: root/doc/html/debug.html
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-27 20:55:12 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-11-27 20:55:12 -0600
commit992df30f3c50b5439c2b5f8621ab6e928d9346eb (patch)
treeacdd3b48b9f30eeda4f94092172ffb3042fca766 /doc/html/debug.html
parent74ce99a42a0dc9d9a168156a2f5d146edb9bb555 (diff)
parent84f70969d95344d402d6f6152a6373469a3718ca (diff)
downloadtqt-992df30f3c50b5439c2b5f8621ab6e928d9346eb.tar.gz
tqt-992df30f3c50b5439c2b5f8621ab6e928d9346eb.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
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>