diff options
Diffstat (limited to 'doc/html/tqcustomevent.html')
-rw-r--r-- | doc/html/tqcustomevent.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqcustomevent.html b/doc/html/tqcustomevent.html index e29b1c0dd..f8626d291 100644 --- a/doc/html/tqcustomevent.html +++ b/doc/html/tqcustomevent.html @@ -49,8 +49,8 @@ The TQCustomEvent class provides support for custom events. <p> <p> TQCustomEvent is a generic event class for user-defined events. User defined events can be sent to widgets or other <a href="tqobject.html">TQObject</a> -instances using <a href="ntqapplication.html#postEvent">TQApplication::postEvent</a>() or -<a href="ntqapplication.html#sendEvent">TQApplication::sendEvent</a>(). Subclasses of TQObject can easily +instances using <a href="tqapplication.html#postEvent">TQApplication::postEvent</a>() or +<a href="tqapplication.html#sendEvent">TQApplication::sendEvent</a>(). Subclasses of TQObject can easily receive custom events by implementing the <a href="tqobject.html#customEvent">TQObject::customEvent</a>() event handler function. <p> TQCustomEvent objects should be created with a type ID that @@ -81,7 +81,7 @@ suitable for your event type. // To send an event of this custom event type: ColorChangeEvent* ce = new ColorChangeEvent( blue ); - TQApplication::<a href="ntqapplication.html#postEvent">postEvent</a>( receiver, ce ); // TQt will delete it when done + TQApplication::<a href="tqapplication.html#postEvent">postEvent</a>( receiver, ce ); // TQt will delete it when done // To receive an event of this custom event type: @@ -94,7 +94,7 @@ suitable for your event type. } </pre> -<p> <p>See also <a href="tqobject.html#customEvent">TQWidget::customEvent</a>(), <a href="ntqapplication.html#notify">TQApplication::notify</a>(), and <a href="events.html">Event Classes</a>. +<p> <p>See also <a href="tqobject.html#customEvent">TQWidget::customEvent</a>(), <a href="tqapplication.html#notify">TQApplication::notify</a>(), and <a href="events.html">Event Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQCustomEvent"></a>TQCustomEvent::TQCustomEvent ( int type ) |