summaryrefslogtreecommitdiffstats
path: root/src/gui/accessible/qaccessibleplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/accessible/qaccessibleplugin.cpp')
-rw-r--r--src/gui/accessible/qaccessibleplugin.cpp18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/gui/accessible/qaccessibleplugin.cpp b/src/gui/accessible/qaccessibleplugin.cpp
index c2fe9c7a7a..6b6f9348fd 100644
--- a/src/gui/accessible/qaccessibleplugin.cpp
+++ b/src/gui/accessible/qaccessibleplugin.cpp
@@ -58,16 +58,15 @@ QT_BEGIN_NAMESPACE
\ingroup accessibility
Writing an accessibility 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.
+ base class, reimplementing the pure virtual function create(),
+ and exporting the class with the Q_PLUGIN_METADATA() macro.
\sa QAccessibleBridgePlugin, {How to Create Qt Plugins}
*/
/*!
Constructs an accessibility plugin with the given \a parent. This
- is invoked automatically by the Q_EXPORT_PLUGIN2() macro.
+ is invoked automatically by the plugin loader.
*/
QAccessiblePlugin::QAccessiblePlugin(QObject *parent)
: QObject(parent)
@@ -85,17 +84,6 @@ QAccessiblePlugin::~QAccessiblePlugin()
}
/*!
- \fn QStringList QAccessiblePlugin::keys() const
-
- Returns the list of keys this plugin supports.
-
- These keys must be the class names that this plugin provides
- an accessibility implementation for.
-
- \sa create()
-*/
-
-/*!
\fn QAccessibleInterface *QAccessiblePlugin::create(const QString &key, QObject *object)
Creates and returns a QAccessibleInterface implementation for the