QtTools: Remove reference to deprecated Q_EXPORT_PLUGIN2
authorDavid Schulz <david.schulz@digia.com>
Fri, 30 Nov 2012 13:42:20 +0000 (14:42 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Sat, 1 Dec 2012 00:08:20 +0000 (01:08 +0100)
Change-Id: Ic553855393b23c8d1817e40bdff7bd219c395caf
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
examples/designer/doc/src/customwidgetplugin.qdoc

index 0e6ca3a..5176556 100644 (file)
     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}.
 */