summaryrefslogtreecommitdiffstats
path: root/src/gui/accessible/qaccessiblebridge.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-05-27 03:47:28 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-08 00:12:03 +0200
commit2903db8b4ce77f5ff36da7c3c8fb43337881598f (patch)
tree117305a3c08f6790d78e5fb08877bfc0da51d1d4 /src/gui/accessible/qaccessiblebridge.cpp
parentc9d040c1f5b0ee0ddd37e924576ec3bbd990f2ed (diff)
Remove the QFactoryInterface dependency from accessible plugins
QFactoryInterface is not needed anymore and will get removed soon. Change-Id: Ib2806200b1a7f4a45d62e2b556380946ef68f585 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@nokia.com>
Diffstat (limited to 'src/gui/accessible/qaccessiblebridge.cpp')
-rw-r--r--src/gui/accessible/qaccessiblebridge.cpp19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/gui/accessible/qaccessiblebridge.cpp b/src/gui/accessible/qaccessiblebridge.cpp
index d6d0796701..e0780f0680 100644
--- a/src/gui/accessible/qaccessiblebridge.cpp
+++ b/src/gui/accessible/qaccessiblebridge.cpp
@@ -108,17 +108,15 @@ QT_BEGIN_NAMESPACE
\inmodule QtWidgets
Writing an accessibility bridge plugin is achieved by subclassing
- this base class, reimplementing the pure virtual functions keys()
- and create(), and exporting the class with the
- Q_EXPORT_PLUGIN2() macro.
+ this base class, reimplementing the pure virtual function create(),
+ and exporting the class with the Q_PLUGIN_METADATA() macro.
\sa QAccessibleBridge, QAccessiblePlugin, {How to Create Qt Plugins}
*/
/*!
Constructs an accessibility bridge plugin with the given \a
- parent. This is invoked automatically by the Q_EXPORT_PLUGIN2()
- macro.
+ parent. This is invoked automatically by the plugin loader.
*/
QAccessibleBridgePlugin::QAccessibleBridgePlugin(QObject *parent)
: QObject(parent)
@@ -138,17 +136,6 @@ QAccessibleBridgePlugin::~QAccessibleBridgePlugin()
}
/*!
- \fn QStringList QAccessibleBridgePlugin::keys() const
-
- Returns the list of keys this plugins supports.
-
- These keys must be the names of the bridges that this
- plugin provides.
-
- \sa create()
-*/
-
-/*!
\fn QAccessibleBridge *QAccessibleBridgePlugin::create(const QString &key)
Creates and returns the QAccessibleBridge object corresponding to