summaryrefslogtreecommitdiffstats
path: root/examples/designer
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@digia.com>2012-11-30 14:42:20 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-01 01:08:20 +0100
commit56236342356548c12443afc05a2ea58e7e582849 (patch)
treeae174f6f8d2f9fcf6c7335e40be6684a676090fc /examples/designer
parenta21eb1272e0a04575c8ad78c0d1a7120d87302af (diff)
QtTools: Remove reference to deprecated Q_EXPORT_PLUGIN2
Change-Id: Ic553855393b23c8d1817e40bdff7bd219c395caf Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'examples/designer')
-rw-r--r--examples/designer/doc/src/customwidgetplugin.qdoc13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/designer/doc/src/customwidgetplugin.qdoc b/examples/designer/doc/src/customwidgetplugin.qdoc
index 0e6ca3aa5..51765568c 100644
--- a/examples/designer/doc/src/customwidgetplugin.qdoc
+++ b/examples/designer/doc/src/customwidgetplugin.qdoc
@@ -222,17 +222,4 @@
containing the custom widget class definition:
\snippet designer/customwidgetplugin/customwidgetplugin.cpp 12
-
- Finally, we use the Q_EXPORT_PLUGIN2() macro to export the \c
- AnalogClockPlugin class for use with \QD:
-
- \snippet designer/customwidgetplugin/customwidgetplugin.cpp 13
-
- This macro ensures that \QD can access and construct the custom widget.
- Without this macro, there is no way for \QD to use the widget.
-
- It is important to note that you can only use the Q_EXPORT_PLUGIN2()
- macro once in any implementation. If you have several custom widgets in
- an implementation that you wish to make available to \QD, you will need
- to implement \l{QDesignerCustomWidgetCollectionInterface}.
*/