summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qobject.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qobject.3qt')
-rw-r--r--doc/man/man3/qobject.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/qobject.3qt b/doc/man/man3/qobject.3qt
index fe34d19..d3de069 100644
--- a/doc/man/man3/qobject.3qt
+++ b/doc/man/man3/qobject.3qt
@@ -555,7 +555,7 @@ Example:
.br
QKeyEvent *k = (QKeyEvent*)ev;
.br
- qDebug( "Ate key press %d", k->key() );
+ tqDebug( "Ate key press %d", k->key() );
.br
return TRUE;
.br
@@ -668,7 +668,7 @@ Here's a \fCKeyPressEater\fR class that eats the key presses of its monitored ob
.br
QKeyEvent *k = (QKeyEvent *)e;
.br
- qDebug( "Ate key press %d", k->key() );
+ tqDebug( "Ate key press %d", k->key() );
.br
return TRUE; // eat event
.br
@@ -903,7 +903,7 @@ Example:
.br
{
.br
- qDebug( "timer event, id %d", e->timerId() );
+ tqDebug( "timer event, id %d", e->timerId() );
.br
}
.br
@@ -945,11 +945,11 @@ You can find an object by name (and type) using child(). You can find a set of o
.PP
The object name is set by the constructor or by the setName() function. The object name is not very useful in the current version of Qt, but will become increasingly important in the future.
.PP
-If the object does not have a name, the name() function returns" unnamed", so printf() (used in qDebug()) will not be asked to output a null pointer. If you want a null pointer to be returned for unnamed objects, you can call name( 0 ).
+If the object does not have a name, the name() function returns" unnamed", so printf() (used in tqDebug()) will not be asked to output a null pointer. If you want a null pointer to be returned for unnamed objects, you can call name( 0 ).
.PP
.nf
.br
- qDebug( "MyClass::setPrecision(): (%s) invalid precision %f",
+ tqDebug( "MyClass::setPrecision(): (%s) invalid precision %f",
.br
name(), newPrecision );
.br