diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-25 14:05:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-25 14:05:14 -0600 |
commit | bd87b2af9dde0633e56a792665cdec7a9675da95 (patch) | |
tree | 372fc8bc287d9712646388e9543b291a30b9cbd6 /doc/html/ntqobject.html | |
parent | c5e69959c9eeb6a1396f1a60d7cf4f9781a2d47c (diff) | |
download | tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.tar.gz tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.zip |
Automated update from Qt3
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> |