Files
qt-creator/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.cpp
Friedemann Kleint e538e8f2e7 Qt Designer Custom Widget wizard: Remove remains of Qt 4
Clean the .pro files and use Qt 5 plugin metadata instead of old
exports.

Change-Id: I24c96d90f5dc45ecd20064159eb175e0e0475a34
Reviewed-by: hjk <hjk@qt.io>
2023-03-01 09:16:05 +00:00

13 lines
253 B
C++

@PLUGIN_INCLUDES@
@COLLECTION_PLUGIN_CLASS@::@COLLECTION_PLUGIN_CLASS@(QObject *parent)
: QObject(parent)
{
@PLUGIN_ADDITIONS@
}
QList<QDesignerCustomWidgetInterface*> @COLLECTION_PLUGIN_CLASS@::customWidgets() const
{
return m_widgets;
}