summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-12-07 15:00:24 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-10 10:04:16 +0100
commit8b99e60c03b50f354f5e33f0d5db53448130be6a (patch)
tree0719acd5dfe2c15559b8d0472cf295252339acde
parent275ce55e1064d7fc7799f2c832991d052c071b19 (diff)
Add \brief comments to ActiveQt examples.
Change-Id: I33e64247a11e9f708890b4b75859295f8cad7c94 Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
-rw-r--r--src/activeqt/doc/src/examples/comapp.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/dotnet.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/hierarchy.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/menus.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/multiple.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/opengl.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/qutlook.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/webbrowser.qdoc2
-rw-r--r--src/activeqt/doc/src/examples/wrapper.qdoc2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/activeqt/doc/src/examples/comapp.qdoc b/src/activeqt/doc/src/examples/comapp.qdoc
index 1c26a25..397b18f 100644
--- a/src/activeqt/doc/src/examples/comapp.qdoc
+++ b/src/activeqt/doc/src/examples/comapp.qdoc
@@ -29,7 +29,7 @@
\example activeqt/comapp
\title COM App Example (ActiveQt)
- The COM App example shows how to use ActiveQt to develop a Qt
+ \brief The COM App example shows how to use ActiveQt to develop a Qt
application that can be automated via COM. Different QObject
based classes are exposed as COM objects that communicate with the
GUI of the running Qt application. The APIs of those COM objects
diff --git a/src/activeqt/doc/src/examples/dotnet.qdoc b/src/activeqt/doc/src/examples/dotnet.qdoc
index 2f522c1..2915422 100644
--- a/src/activeqt/doc/src/examples/dotnet.qdoc
+++ b/src/activeqt/doc/src/examples/dotnet.qdoc
@@ -29,7 +29,7 @@
\page activeqt-dotnet.html
\title Dot Net Example (ActiveQt)
- The Dot Net example demonstrates how Qt objects can be used in a
+ \brief The Dot Net example demonstrates how Qt objects can be used in a
.NET environment, and how .NET objects can be used in a Qt
environment.
diff --git a/src/activeqt/doc/src/examples/hierarchy.qdoc b/src/activeqt/doc/src/examples/hierarchy.qdoc
index ef37856..c3a65cd 100644
--- a/src/activeqt/doc/src/examples/hierarchy.qdoc
+++ b/src/activeqt/doc/src/examples/hierarchy.qdoc
@@ -36,7 +36,7 @@
\example activeqt/hierarchy
\title Hierarchy Example (ActiveQt)
- The Hierarchy example is shows how to write an in-process ActiveX
+ \brief The Hierarchy example is shows how to write an in-process ActiveX
control. The control is a QWidget subclass with child widgets
that are accessible as sub-types.
diff --git a/src/activeqt/doc/src/examples/menus.qdoc b/src/activeqt/doc/src/examples/menus.qdoc
index e1d6c84..1e62bb5 100644
--- a/src/activeqt/doc/src/examples/menus.qdoc
+++ b/src/activeqt/doc/src/examples/menus.qdoc
@@ -45,7 +45,7 @@
\example activeqt/menus
\title Menus Example (ActiveQt)
- The Menus example demonstrates the use of QMenuBar and QStatusBar
+ \brief The Menus example demonstrates the use of QMenuBar and QStatusBar
in a QMainWindow to implement an in-place active control.
To build the example you must first build the QAxServer library.
diff --git a/src/activeqt/doc/src/examples/multiple.qdoc b/src/activeqt/doc/src/examples/multiple.qdoc
index 99750c5..6707690 100644
--- a/src/activeqt/doc/src/examples/multiple.qdoc
+++ b/src/activeqt/doc/src/examples/multiple.qdoc
@@ -36,7 +36,7 @@
\example activeqt/multiple
\title Multiple Example (ActiveQt)
- The Multiple example demonstrates the implementation of a
+ \brief The Multiple example demonstrates the implementation of a
QAxFactory to provide multiple ActiveX controls in a single in
process ActiveX server using the \c QAXFACTORY_EXPORT() macro.
The ActiveX controls in this example are simple QWidget
diff --git a/src/activeqt/doc/src/examples/opengl.qdoc b/src/activeqt/doc/src/examples/opengl.qdoc
index 7d3c68b..d39b3b5 100644
--- a/src/activeqt/doc/src/examples/opengl.qdoc
+++ b/src/activeqt/doc/src/examples/opengl.qdoc
@@ -61,7 +61,7 @@
\example activeqt/opengl
\title OpenGL Example (ActiveQt)
- The OpenGL example demonstrates the use of the default factory
+ \brief The OpenGL example demonstrates the use of the default factory
and QAxFactory::isServer(), and the implementation of an
additional COM interface using QAxBindable and QAxAggregated.
The server executable can run both as an ActiveX server and as a
diff --git a/src/activeqt/doc/src/examples/qutlook.qdoc b/src/activeqt/doc/src/examples/qutlook.qdoc
index 12774b4..57d572e 100644
--- a/src/activeqt/doc/src/examples/qutlook.qdoc
+++ b/src/activeqt/doc/src/examples/qutlook.qdoc
@@ -29,7 +29,7 @@
\example activeqt/qutlook
\title Qutlook Example (ActiveQt)
- The Qutlook example demonstrates the use of ActiveQt to automate
+ \brief The Qutlook example demonstrates the use of ActiveQt to automate
Outlook. The example makes use of the \l dumpcpp tool to generate
a C++ namespace for the type library describing the Outlook
Object Model.
diff --git a/src/activeqt/doc/src/examples/webbrowser.qdoc b/src/activeqt/doc/src/examples/webbrowser.qdoc
index 0117092..06f7d95 100644
--- a/src/activeqt/doc/src/examples/webbrowser.qdoc
+++ b/src/activeqt/doc/src/examples/webbrowser.qdoc
@@ -29,7 +29,7 @@
\example activeqt/webbrowser
\title Web Browser Example (ActiveQt)
- The Web Browser example uses the Microsoft Web Browser
+ \brief The Web Browser example uses the Microsoft Web Browser
ActiveX control to implement a fully functional Web Browser
application. The user interface has been developed using the Qt
Designer integration of the QAxWidget class.
diff --git a/src/activeqt/doc/src/examples/wrapper.qdoc b/src/activeqt/doc/src/examples/wrapper.qdoc
index 3f4b904..c453e3c 100644
--- a/src/activeqt/doc/src/examples/wrapper.qdoc
+++ b/src/activeqt/doc/src/examples/wrapper.qdoc
@@ -37,7 +37,7 @@
\example activeqt/wrapper
\title Wrapper Example (ActiveQt)
- The Wrapper example demonstrates how to export existing QWidget
+ \brief The Wrapper example demonstrates how to export existing QWidget
classes as ActiveX controls, and the use of QAxFactory together
with the \c QAXFACTORY_EXPORT() macro. ActiveX controls in this
example are the standard button classes QPushButton, QCheckBox