diff options
Diffstat (limited to 'doc/html/ntqobject.html')
-rw-r--r-- | doc/html/ntqobject.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/ntqobject.html b/doc/html/ntqobject.html index d5d23adfd..06ecf97e6 100644 --- a/doc/html/ntqobject.html +++ b/doc/html/ntqobject.html @@ -522,7 +522,7 @@ TRUE; otherwise return FALSE. if ( obj == textEdit ) { if ( e->type() == TQEvent::KeyPress ) { <a href="qkeyevent.html">TQKeyEvent</a> *k = (TQKeyEvent*)ev; - <a href="ntqapplication.html#qDebug">qDebug</a>( "Ate key press %d", k-><a href="qkeyevent.html#key">key</a>() ); + <a href="ntqapplication.html#qDebug">tqDebug</a>( "Ate key press %d", k-><a href="qkeyevent.html#key">key</a>() ); return TRUE; } else { return FALSE; @@ -616,7 +616,7 @@ monitored objects: if ( e->type() == TQEvent::KeyPress ) { // special processing for key press <a href="qkeyevent.html">TQKeyEvent</a> *k = (TQKeyEvent *)e; - <a href="ntqapplication.html#qDebug">qDebug</a>( "Ate key press %d", k-><a href="qkeyevent.html#key">key</a>() ); + <a href="ntqapplication.html#qDebug">tqDebug</a>( "Ate key press %d", k-><a href="qkeyevent.html#key">key</a>() ); return TRUE; // eat event } else { // standard event processing @@ -859,7 +859,7 @@ used to find out which timer was activated. void MyObject::<a href="#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> *e ) { - <a href="ntqapplication.html#qDebug">qDebug</a>( "timer event, id %d", e-><a href="qtimerevent.html#timerId">timerId</a>() ); + <a href="ntqapplication.html#qDebug">tqDebug</a>( "timer event, id %d", e-><a href="qtimerevent.html#timerId">timerId</a>() ); } </pre> @@ -920,11 +920,11 @@ function. The object name is not very useful in the current version of TQt, but will become increasingly important in the future. <p> If the object does not have a name, the <a href="#name">name</a>() function returns -"unnamed", so printf() (used in <a href="ntqapplication.html#qDebug">qDebug</a>()) will not be asked to +"unnamed", so printf() (used in <a href="ntqapplication.html#qDebug">tqDebug</a>()) 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 ). <p> <pre> - <a href="ntqapplication.html#qDebug">qDebug</a>( "MyClass::setPrecision(): (%s) invalid precision %f", + <a href="ntqapplication.html#qDebug">tqDebug</a>( "MyClass::setPrecision(): (%s) invalid precision %f", <a href="#name">name</a>(), newPrecision ); </pre> |