diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /doc/debug.doc | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
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 945f019..d8779b9 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 ::tqDebug() tqDebug()\endlink for writing debug output for testing etc. -\i \link ::tqWarning() tqWarning()\endlink for writing warning output when program +\i \link ::qDebug() qDebug()\endlink for writing debug output for testing etc. +\i \link ::qWarning() qWarning()\endlink for writing warning output when program errors occur. -\i \link ::tqFatal() tqFatal()\endlink for writing fatal error messages +\i \link ::qFatal() qFatal()\endlink for writing fatal error messages and exiting. \endlist @@ -166,12 +166,12 @@ Example: { #if defined(QT_CHECK_NULL) if ( p == 0 ) - tqWarning( "f: Null pointer not allowed" ); + qWarning( "f: Null pointer not allowed" ); #endif #if defined(QT_CHECK_RANGE) if ( i < 0 ) - tqWarning( "f: The index cannot be negative" ); + qWarning( "f: The index cannot be negative" ); #endif } \endcode |