summaryrefslogtreecommitdiffstats
path: root/doc/html/qcustomevent.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-15 19:08:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/qcustomevent.html
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt-a30f5359.tar.gz
tqt-a30f5359.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qcustomevent.html')
-rw-r--r--doc/html/qcustomevent.html6
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: