summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/activeqt/container/qaxbase.cpp2
-rw-r--r--src/activeqt/container/qaxscript.cpp4
-rw-r--r--src/activeqt/control/qaxfactory.cpp8
-rw-r--r--src/activeqt/doc/activeqt.qdocconf2
-rw-r--r--src/activeqt/doc/src/examples/dotnet.qdoc2
-rw-r--r--src/activeqt/doc/src/qtaxserver.qdoc2
6 files changed, 10 insertions, 10 deletions
diff --git a/src/activeqt/container/qaxbase.cpp b/src/activeqt/container/qaxbase.cpp
index 959f6e3..2c5865c 100644
--- a/src/activeqt/container/qaxbase.cpp
+++ b/src/activeqt/container/qaxbase.cpp
@@ -700,7 +700,7 @@ QByteArray QAxEventSink::findProperty(DISPID dispID)
Properties exposed by the object's IDispatch implementation can
be read and written through the property system provided by the
- Qt Object Model (both subclasses are QObjects, so you can use
+ Qt Object Model (both subclasses are \l{QObject}s, so you can use
QObject::setProperty() and QObject::property()). Properties with
multiple parameters are not supported.
diff --git a/src/activeqt/container/qaxscript.cpp b/src/activeqt/container/qaxscript.cpp
index 8d1a697..b7a8862 100644
--- a/src/activeqt/container/qaxscript.cpp
+++ b/src/activeqt/container/qaxscript.cpp
@@ -696,7 +696,7 @@ QAxScript::~QAxScript()
heuristically. If \a code contains the string \c {End Sub} it will
be interpreted as VBScript, otherwise as JScript. Additional
scripting languages can be registered using
- QAxScript::registerEngine().
+ QAxScriptManager::registerEngine().
This function can only be called once for each QAxScript object,
which is done automatically when using QAxScriptManager::load().
@@ -869,7 +869,7 @@ QAxBase *QAxScript::findObject(const QString &name)
/*! \fn void QAxScript::stateChanged(int state);
This signal is emitted when a script engine changes state.
- \a state can be any value in the QAxScriptEngineState enumeration.
+ \a state can be any value in the \c QAxScriptEngine::State enumeration.
*/
/*!
diff --git a/src/activeqt/control/qaxfactory.cpp b/src/activeqt/control/qaxfactory.cpp
index 3ccf78c..3d6ff9f 100644
--- a/src/activeqt/control/qaxfactory.cpp
+++ b/src/activeqt/control/qaxfactory.cpp
@@ -367,7 +367,7 @@ extern wchar_t qAxModuleFilename[MAX_PATH];
Returns the directory that contains the server binary.
For out-of-process servers this is the same as
- QApplication::applicationDirPath(). For in-process servers
+ \l {QCoreApplication::applicationDirPath()}. For in-process servers
that function returns the directory that contains the hosting
application.
*/
@@ -380,7 +380,7 @@ QString QAxFactory::serverDirPath()
Returns the file path of the server binary.
For out-of-process servers this is the same as
- QApplication::applicationFilePath(). For in-process servers
+ \l {QCoreApplication::applicationFilePath()}. For in-process servers
that function returns the file path of the hosting application.
*/
QString QAxFactory::serverFilePath()
@@ -548,8 +548,8 @@ bool QAxFactory::registerActiveObject(QObject *object)
\a IDTypeLib, and if the server is an executable server then it will have the
application id \a IDApp.
- This macro needs to be used together with the QAXCLASS(), QAXTYPE()
- and QAXFACTORY_END() macros.
+ This macro needs to be used together with the \l {QAxFactory::}{QAXCLASS()}, \c {QAxFactory::}{QAXTYPE()}
+ and \c {QAxFactory::}{QAXFACTORY_END()} macros.
\snippet src_activeqt_control_qaxfactory.cpp 9
*/
diff --git a/src/activeqt/doc/activeqt.qdocconf b/src/activeqt/doc/activeqt.qdocconf
index 3f9afcf..10a340c 100644
--- a/src/activeqt/doc/activeqt.qdocconf
+++ b/src/activeqt/doc/activeqt.qdocconf
@@ -31,7 +31,7 @@ qhp.ActiveQt.subprojects.qaxserverclasses.sortPages = true
tagfile = ../../../doc/activeqt/activeqt.tags
-depends += qtcore qtdesigner qtdoc qtopengl qtscript qtwidgets
+depends += qtcore qtdesigner qtdoc qtopengl qtscript qtwidgets qtgui
headerdirs += ..
diff --git a/src/activeqt/doc/src/examples/dotnet.qdoc b/src/activeqt/doc/src/examples/dotnet.qdoc
index 5f4f575..425bdc3 100644
--- a/src/activeqt/doc/src/examples/dotnet.qdoc
+++ b/src/activeqt/doc/src/examples/dotnet.qdoc
@@ -222,7 +222,7 @@
the Qt objects we want to use in our form. Right-click on the empty
space, and select "Customize". This opens a dialog that has two
tabs, "COM Components" and ".NET Framework Components". We used
- ActiveQt to wrap QWidgets into COM objects, so we select the "COM
+ ActiveQt to wrap \l {QWidget}s into COM objects, so we select the "COM
Components" page, and look for the classes we want to use, e.g.
"QPushButton" and "QAxWidget2".
diff --git a/src/activeqt/doc/src/qtaxserver.qdoc b/src/activeqt/doc/src/qtaxserver.qdoc
index 3ea3387..97ddcf3 100644
--- a/src/activeqt/doc/src/qtaxserver.qdoc
+++ b/src/activeqt/doc/src/qtaxserver.qdoc
@@ -267,7 +267,7 @@
the default factory through the QAXFACTORY_DEFAULT() macro. If you
cannot provide a standard constructor you must implement a
QAxFactory custom factory and call the constructor you have in
- your implementation of QAxFactory::create.
+ your implementation of \l {QAxFactory::createObject}.
\endfootnote
\snippet doc_src_qaxserver.cpp 6