aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h')
-rw-r--r--examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h b/examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h
index 6be8611dfd..f444d31f4e 100644
--- a/examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h
+++ b/examples/declarative/painteditem/textballoons/TextBalloonPlugin/plugin.h
@@ -46,11 +46,10 @@
class TextBalloonPlugin : public QDeclarativeExtensionPlugin
{
Q_OBJECT
+ Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QDeclarativeExtensionInterface" FILE "textballoon.json")
public:
void registerTypes(const char *uri)
{
qmlRegisterType<TextBalloon>(uri, 1, 0, "TextBalloon");
}
};
-
-Q_EXPORT_PLUGIN2(qmltextballoonplugin, TextBalloonPlugin);