summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqaxscriptengine.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqaxscriptengine.3qt')
-rw-r--r--doc/man/man3/tqaxscriptengine.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqaxscriptengine.3qt b/doc/man/man3/tqaxscriptengine.3qt
index fafc4670..efcfb834 100644
--- a/doc/man/man3/tqaxscriptengine.3qt
+++ b/doc/man/man3/tqaxscriptengine.3qt
@@ -21,7 +21,7 @@ Inherits QAxObject.
.BI "enum \fBState\fR { Uninitialized = 0, Initialized = 5, Started = 1, Connected = 2, Disconnected = 3, Closed = 4 }"
.br
.ti -1c
-.BI "\fBQAxScriptEngine\fR ( const QString & language, QAxScript * script )"
+.BI "\fBQAxScriptEngine\fR ( const TQString & language, QAxScript * script )"
.br
.ti -1c
.BI "\fB~QAxScriptEngine\fR ()"
@@ -33,7 +33,7 @@ Inherits QAxObject.
.BI "bool \fBhasIntrospection\fR () const"
.br
.ti -1c
-.BI "QString \fBscriptLanguage\fR () const"
+.BI "TQString \fBscriptLanguage\fR () const"
.br
.ti -1c
.BI "State \fBstate\fR () const"
@@ -42,7 +42,7 @@ Inherits QAxObject.
.BI "void \fBsetState\fR ( State st )"
.br
.ti -1c
-.BI "void \fBaddItem\fR ( const QString & name )"
+.BI "void \fBaddItem\fR ( const TQString & name )"
.br
.ti -1c
.BI "long \fBqueryInterface\fR ( const QUuid & uuid, void ** iface ) const"
@@ -74,13 +74,13 @@ The State enumeration defines the different states a script engine can be in.
.TP
\fCQAxScriptEngine::Closed\fR - The script has been closed.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QAxScriptEngine::QAxScriptEngine ( const QString & language, QAxScript * script )"
+.SH "QAxScriptEngine::QAxScriptEngine ( const TQString & language, QAxScript * script )"
Constructs a QAxScriptEngine object interpreting script code in \fIlanguage\fR provided by the code in \fIscript\fR. This is usually done by the QAxScript class when loading a script.
.PP
Instances of QAxScriptEngine should always have both a language and a script.
.SH "QAxScriptEngine::~QAxScriptEngine ()"
Destroys the QAxScriptEngine object, releasing all allocated resources.
-.SH "void QAxScriptEngine::addItem ( const QString & name )"
+.SH "void QAxScriptEngine::addItem ( const TQString & name )"
Registers an item with the script engine. Script code can refer to this item using \fIname\fR.
.SH "bool QAxScriptEngine::hasIntrospection () const"
Returns TRUE if the script engine supports introspection; otherwise returns FALSE.
@@ -90,7 +90,7 @@ Returns TRUE if the script engine has been initialized correctly; otherwise retu
Requests the interface \fIuuid\fR from the script engine object and sets the value of \fIiface\fR to the provided interface, or to 0 if the requested interface could not be provided.
.PP
Returns the result of the QueryInterface implementation of the COM object.
-.SH "QString QAxScriptEngine::scriptLanguage () const"
+.SH "TQString QAxScriptEngine::scriptLanguage () const"
Returns the scripting language, for example "VBScript", or "JScript".
.SH "void QAxScriptEngine::setState ( State st )"
Sets the state of the script engine to \fIst\fR. Calling this function is usually not necessary.