diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /doc/debug.doc | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'doc/debug.doc')
-rw-r--r-- | doc/debug.doc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/debug.doc b/doc/debug.doc index d8779b9..945f019 100644 --- a/doc/debug.doc +++ b/doc/debug.doc @@ -72,10 +72,10 @@ that can help with debugging. Qt includes three global functions for writing out warning and debug text. \list -\i \link ::qDebug() qDebug()\endlink for writing debug output for testing etc. -\i \link ::qWarning() qWarning()\endlink for writing warning output when program +\i \link ::tqDebug() tqDebug()\endlink for writing debug output for testing etc. +\i \link ::tqWarning() tqWarning()\endlink for writing warning output when program errors occur. -\i \link ::qFatal() qFatal()\endlink for writing fatal error messages +\i \link ::tqFatal() tqFatal()\endlink for writing fatal error messages and exiting. \endlist @@ -166,12 +166,12 @@ Example: { #if defined(QT_CHECK_NULL) if ( p == 0 ) - qWarning( "f: Null pointer not allowed" ); + tqWarning( "f: Null pointer not allowed" ); #endif #if defined(QT_CHECK_RANGE) if ( i < 0 ) - qWarning( "f: The index cannot be negative" ); + tqWarning( "f: The index cannot be negative" ); #endif } \endcode |