diff options
Diffstat (limited to 'doc/html/qcustomevent.html')
-rw-r--r-- | doc/html/qcustomevent.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qcustomevent.html b/doc/html/qcustomevent.html index 19873bb12..d1f78e0de 100644 --- a/doc/html/qcustomevent.html +++ b/doc/html/qcustomevent.html @@ -72,11 +72,11 @@ suitable for your event type. class ColorChangeEvent : public TQCustomEvent { public: - ColorChangeEvent( <a href="ntqcolor.html">TQColor</a> color ) + ColorChangeEvent( <a href="tqcolor.html">TQColor</a> color ) : TQCustomEvent( 65432 ), c( color ) {} - <a href="ntqcolor.html">TQColor</a> color() const { return c; } + <a href="tqcolor.html">TQColor</a> color() const { return c; } private: - <a href="ntqcolor.html">TQColor</a> c; + <a href="tqcolor.html">TQColor</a> c; }; // To send an event of this custom event type: |