summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxserver-example-multiple.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qaxserver-example-multiple.html')
-rw-r--r--doc/html/qaxserver-example-multiple.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/qaxserver-example-multiple.html b/doc/html/qaxserver-example-multiple.html
index 010bc50fc..86094e0b3 100644
--- a/doc/html/qaxserver-example-multiple.html
+++ b/doc/html/qaxserver-example-multiple.html
@@ -33,7 +33,7 @@ body { background: #ffffff; color: black; }
-The ActiveX controls in this example are simple <a href="ntqwidget.html">TQWidget</a>
+The ActiveX controls in this example are simple <a href="tqwidget.html">TQWidget</a>
subclasses reimplementing the paintEvent() method. The classes use
the TQ_CLASSINFO macro to
<p> The example demonstrates the use of the TQ_CLASSINFO macro to set
@@ -41,7 +41,7 @@ the TQ_CLASSINFO macro to
the <a href="qaxfactory.html#TQAXFACTORY_BEGIN">TQAXFACTORY_BEGIN</a>, <a href="qaxfactory.html#TQAXCLASS">TQAXCLASS</a> and <a href="qaxfactory.html#TQAXFACTORY_END">TQAXFACTORY_END</a> macros.
<p>
-<pre> class TQAxWidget1 : public <a href="ntqwidget.html">TQWidget</a>
+<pre> class TQAxWidget1 : public <a href="tqwidget.html">TQWidget</a>
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
TQ_CLASSINFO("ClassID", "{1D9928BD-4453-4bdd-903D-E525ED17FDE5}")
@@ -51,8 +51,8 @@ the <a href="qaxfactory.html#TQAXFACTORY_BEGIN">TQAXFACTORY_BEGIN</a>, <a href="
TQ_CLASSINFO macro.
<pre> TQ_PROPERTY( TQColor fillColor READ fillColor WRITE setFillColor )
public:
- TQAxWidget1( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0, WFlags f = 0 )
- : <a href="ntqwidget.html">TQWidget</a>( parent, name, f ), fill_color( red )
+ TQAxWidget1( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0, WFlags f = 0 )
+ : <a href="tqwidget.html">TQWidget</a>( parent, name, f ), fill_color( red )
{
}
@@ -82,7 +82,7 @@ TQ_CLASSINFO macro.
property using the TQ_PROPERTY macro.
<p>
-<pre> class TQAxWidget2 : public <a href="ntqwidget.html">TQWidget</a>
+<pre> class TQAxWidget2 : public <a href="tqwidget.html">TQWidget</a>
{
TQ_OBJECT
TQ_CLASSINFO("ClassID", "{58139D56-6BE9-4b17-937D-1B1EDEDD5B71}")
@@ -92,12 +92,12 @@ property using the TQ_PROPERTY macro.
TQ_CLASSINFO("StockEvents", "yes")
</pre>The declaration of the second control class uses the TQ_CLASSINFO macro
to set the COM identifiers as well as additional COM attributes for the
-class. Objects of that class will not expose the <a href="ntqwidget.html">TQWidget</a> API, and provide
+class. Objects of that class will not expose the <a href="tqwidget.html">TQWidget</a> API, and provide
the ActiveX stock events (ie. Click, KeyDown etc.).
<pre> TQ_PROPERTY( int lineWidth READ lineWidth WRITE setLineWidth )
public:
- TQAxWidget2( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0, WFlags f = 0 )
- : <a href="ntqwidget.html">TQWidget</a>( parent, name, f ), line_width( 1 )
+ TQAxWidget2( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0, WFlags f = 0 )
+ : <a href="tqwidget.html">TQWidget</a>( parent, name, f ), line_width( 1 )
{
}