summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dist/changes-5.0.03
-rw-r--r--src/corelib/plugin/qplugin.qdoc2
2 files changed, 5 insertions, 0 deletions
diff --git a/dist/changes-5.0.0 b/dist/changes-5.0.0
index 76cdd0abcb..b9fc03066e 100644
--- a/dist/changes-5.0.0
+++ b/dist/changes-5.0.0
@@ -649,6 +649,9 @@ Qt for Windows CE
* Plugins *
****************************************************************************
- The text codecs that were previously plugins are now built into QtCore.
+- Code using Q_EXPORT_PLUGIN macros will no longer compile. Use
+ Q_PLUGIN_METADATA instead. Note that this requires that the class
+ be default-constructible.
****************************************************************************
* Important Behavior Changes *
diff --git a/src/corelib/plugin/qplugin.qdoc b/src/corelib/plugin/qplugin.qdoc
index f671a5f1a4..940813f8b6 100644
--- a/src/corelib/plugin/qplugin.qdoc
+++ b/src/corelib/plugin/qplugin.qdoc
@@ -77,6 +77,8 @@
See the \l{tools/plugandpaint}{Plug & Paint} example for details.
+ Note that the class this macro appears on must be default-constructible
+
\sa Q_DECLARE_INTERFACE(), {How to Create Qt Plugins}
*/