summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxserver-example-simple.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/qaxserver-example-simple.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/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 );