diff options
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 |