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.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/qaxbase.html b/doc/html/qaxbase.html
index 5e756fa76..fd65aee67 100644
--- a/doc/html/qaxbase.html
+++ b/doc/html/qaxbase.html
@@ -426,8 +426,8 @@ or use it in e.g. a <a href="ntqtextbrowser.html">TQTextBrowser</a> widget.
</h3>
This virtual function is called by <a href="#setControl">setControl</a>() and creates the
requested COM object. <em>ptr</em> is set to the object's IUnknown
-implementation. The function returns TRUE if the object
-initialization succeeded; otherwise the function returns FALSE.
+implementation. The function returns true if the object
+initialization succeeded; otherwise the function returns false.
<p> The default implementation interprets the string returned by
<a href="#control">control</a>(), and calls <a href="#initializeRemote">initializeRemote</a>(), <a href="#initializeLicensed">initializeLicensed</a>()
or <a href="#initializeActive">initializeActive</a>() if the string matches the respective
@@ -444,8 +444,8 @@ reference it again.
<h3 class=fn>bool <a name="initializeActive"></a>TQAxBase::initializeActive ( IUnknown&nbsp;**&nbsp;ptr )<tt> [protected]</tt>
</h3>
Returns an active instance running on the current machine, and returns the
-IUnknown interface to the running object in <em>ptr</em>. This function returns TRUE
-if successful, otherwise returns FALSE.
+IUnknown interface to the running object in <em>ptr</em>. This function returns true
+if successful, otherwise returns false.
<p> This function is called by <a href="#initialize">initialize</a>() if the control string contains the
substring "}&".
<p> <p>See also <a href="#initialize">initialize</a>().
@@ -453,8 +453,8 @@ substring "}&".
<h3 class=fn>bool <a name="initializeLicensed"></a>TQAxBase::initializeLicensed ( IUnknown&nbsp;**&nbsp;ptr )<tt> [protected]</tt>
</h3>
Creates an instance of a licensed control, and returns the IUnknown interface
-to the object in <em>ptr</em>. This functions returns TRUE if successful, otherwise
-returns FALSE.
+to the object in <em>ptr</em>. This functions returns true if successful, otherwise
+returns false.
<p> This function is called by <a href="#initialize">initialize</a>() if the control string contains the
substring "}:". The license key needs to follow this substring.
<p> <p>See also <a href="#initialize">initialize</a>().
@@ -462,8 +462,8 @@ substring "}:". The license key needs to follow this substring.
<h3 class=fn>bool <a name="initializeRemote"></a>TQAxBase::initializeRemote ( IUnknown&nbsp;**&nbsp;ptr )<tt> [protected]</tt>
</h3>
Creates the instance on a remote server, and returns the IUnknown interface
-to the object in <em>ptr</em>. This function returns TRUE if successful, otherwise
-returns FALSE.
+to the object in <em>ptr</em>. This function returns true if successful, otherwise
+returns false.
<p> This function is called by <a href="#initialize">initialize</a>() if the control string contains the
substring "/{". The information about the remote machine needs to be provided
in front of the substring.
@@ -471,8 +471,8 @@ in front of the substring.
<h3 class=fn>bool <a name="isNull"></a>TQAxBase::isNull () const
</h3>
-Returns TRUE if there is no COM object loaded by this wrapper;
-otherwise return FALSE.
+Returns true if there is no COM object loaded by this wrapper;
+otherwise return false.
<p> <p>See also <a href="#control-prop">control</a>.
<h3 class=fn><a href="qaxbase.html#PropertyBag-enum">PropertyBag</a> <a name="propertyBag"></a>TQAxBase::propertyBag () const
@@ -494,8 +494,8 @@ emitted when the property called <em>name</em> is changed.
<h3 class=fn>bool <a name="propertyWritable"></a>TQAxBase::propertyWritable ( const&nbsp;char&nbsp;*&nbsp;prop ) const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the property <em>prop</em> is writable; otherwise
-returns FALSE. By default, all properties are writable.
+Returns true if the property <em>prop</em> is writable; otherwise
+returns false. By default, all properties are writable.
<p> <b>Warning:</b>
Depending on the control implementation this setting might be
ignored for some properties.
@@ -555,7 +555,7 @@ that are available through the IDispatch interface.
<h3 class=fn>void <a name="setPropertyWritable"></a>TQAxBase::setPropertyWritable ( const&nbsp;char&nbsp;*&nbsp;prop, bool&nbsp;ok )<tt> [virtual]</tt>
</h3>
-Sets the property <em>prop</em> to writable if <em>ok</em> is TRUE, otherwise
+Sets the property <em>prop</em> to writable if <em>ok</em> is true, otherwise
sets <em>prop</em> to be read-only. By default, all properties are
writable.
<p> <b>Warning:</b>