summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxserver-example-simple.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qaxserver-example-simple.html')
-rw-r--r--doc/html/qaxserver-example-simple.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qaxserver-example-simple.html b/doc/html/qaxserver-example-simple.html
index 1547ce29f..cede21a3e 100644
--- a/doc/html/qaxserver-example-simple.html
+++ b/doc/html/qaxserver-example-simple.html
@@ -33,7 +33,7 @@ body { background: #ffffff; color: black; }
-The ActiveX control in this example is a layouted <a href="ntqwidget.html">TQWidget</a>
+The ActiveX control in this example is a layouted <a href="tqwidget.html">TQWidget</a>
with a <a href="ntqslider.html">TQSlider</a>, a <a href="ntqlcdnumber.html">TQLCDNumber</a> and a <a href="ntqlineedit.html">TQLineEdit</a>.
It provides a signal/slot/property interface to change the
values of the slider and the line edit, and to get notified
@@ -44,14 +44,14 @@ and <a href="qaxbindable.html#propertyChanged">TQAxBindable::propertyChanged</a>
<p>
<p> The TQt implementation of the ActiveX for this example is
-<pre> class TQSimpleAX : public <a href="ntqwidget.html">TQWidget</a>, public TQAxBindable
+<pre> class TQSimpleAX : public <a href="tqwidget.html">TQWidget</a>, public TQAxBindable
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
TQ_PROPERTY( TQString text READ text WRITE setText )
TQ_PROPERTY( int value READ value WRITE setValue )
public:
- TQSimpleAX( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 )
- : <a href="ntqwidget.html">TQWidget</a>( parent, name )
+ TQSimpleAX( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 )
+ : <a href="tqwidget.html">TQWidget</a>( parent, name )
{
<a href="qvboxlayout.html">TQVBoxLayout</a> *vbox = new <a href="qvboxlayout.html">TQVBoxLayout</a>( this );