summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxbindable.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/qaxbindable.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970.tar.gz
tqt-8ac0e970.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qaxbindable.html')
-rw-r--r--doc/html/qaxbindable.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qaxbindable.html b/doc/html/qaxbindable.html
index deea539e7..d96ad3083 100644
--- a/doc/html/qaxbindable.html
+++ b/doc/html/qaxbindable.html
@@ -58,7 +58,7 @@ TQWidget and an ActiveX client.
<p>
The TQAxBindable class provides an interface between a
-<a href="ntqwidget.html">TQWidget</a> and an ActiveX client.
+<a href="tqwidget.html">TQWidget</a> and an ActiveX client.
<p>
@@ -68,12 +68,12 @@ your control class from both TQWidget (directly or indirectly) and
this class to get access to this class's functions. The <a href="moc.html">meta object compiler</a> requires you to inherit from
TQWidget <em>first</em>.
<p> <pre>
- class MyActiveX : public <a href="ntqwidget.html">TQWidget</a>, public TQAxBindable
+ class MyActiveX : public <a href="tqwidget.html">TQWidget</a>, public TQAxBindable
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
TQ_PROPERTY( int value READ value WRITE setValue )
public:
- MyActiveX( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 );
+ MyActiveX( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 );
...
int value() const;