summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxbase.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qaxbase.html')
-rw-r--r--doc/html/qaxbase.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/qaxbase.html b/doc/html/qaxbase.html
index 5e756fa76..574fc1c1e 100644
--- a/doc/html/qaxbase.html
+++ b/doc/html/qaxbase.html
@@ -99,7 +99,7 @@ become available as TQt properties and slots.
<p> Properties exposed by the object's IDispatch implementation can be
read and written through the property system provided by the TQt
-Object Model (both subclasses are TQObjects, so you can use <a href="ntqobject.html#setProperty">setProperty()</a> and <a href="ntqobject.html#property">property()</a> as with <a href="ntqobject.html">TQObject</a>). Properties
+Object Model (both subclasses are TQObjects, so you can use <a href="tqobject.html#setProperty">setProperty()</a> and <a href="tqobject.html#property">property()</a> as with <a href="tqobject.html">TQObject</a>). Properties
with multiple parameters are not supported.
<p> <pre>
activeX-&gt;setProperty( "text", "some text" );
@@ -123,7 +123,7 @@ standard TQt signals.
<p> TQAxBase transparently converts between COM data types and the
equivalent TQt data types. Some COM types have no equivalent TQt data structure.
<p> Supported COM datatypes are listed in the first column of following table.
-The second column is the TQt type that can be used with the <a href="ntqobject.html">TQObject</a> property
+The second column is the TQt type that can be used with the <a href="tqobject.html">TQObject</a> property
functions. The third column is the TQt type that is used in the prototype of
generated signals and slots for in-parameters, and the last column is the TQt
type that is used in the prototype of signals and slots for out-parameters.
@@ -240,8 +240,8 @@ use the TQAxBase API like this:
<pre>
<a href="qaxobject.html">TQAxObject</a> object( "&lt;CLSID&gt;" );
- <a href="ntqstring.html">TQString</a> text = object.<a href="ntqobject.html#property">property</a>( "text" ).toString();
- object.<a href="ntqobject.html#setProperty">setProperty</a>( "font", TQFont( "Times New Roman", 12 ) );
+ <a href="ntqstring.html">TQString</a> text = object.<a href="tqobject.html#property">property</a>( "text" ).toString();
+ object.<a href="tqobject.html#setProperty">setProperty</a>( "font", TQFont( "Times New Roman", 12 ) );
connect( this, TQ_SIGNAL(clicked(int)), &amp;object, TQ_SLOT(showColumn(int)) );
bool ok = object.<a href="#dynamicCall">dynamicCall</a>( "addColumn(const <a href="ntqstring.html">TQString</a>&amp;)", "Column 1" ).toBool();
@@ -353,7 +353,7 @@ the method, or an invalid <a href="ntqvariant.html">TQVariant</a> if the method
a value or when the function call failed.
<p> If <em>function</em> is a method of the object the string must be provided
as the full prototype, for example as it would be written in a
-<a href="ntqobject.html#connect">TQObject::connect</a>() call.
+<a href="tqobject.html#connect">TQObject::connect</a>() call.
<pre>
activeX-&gt;dynamicCall( "Navigate(const <a href="ntqstring.html">TQString</a>&amp;)", "www.trolltech.com" );
</pre>
@@ -376,7 +376,7 @@ otherwise the getter is called.
</pre>
Note that it is faster to get and set properties using
-<a href="ntqobject.html#property">TQObject::property</a>() and <a href="ntqobject.html#setProperty">TQObject::setProperty</a>().
+<a href="tqobject.html#property">TQObject::property</a>() and <a href="tqobject.html#setProperty">TQObject::setProperty</a>().
<p> It is only possible to call functions through <a href="#dynamicCall">dynamicCall</a>() that
have parameters or return values of datatypes supported by
<a href="ntqvariant.html">TQVariant</a>. See the TQAxBase class documentation for a list of