QmlDesigner: Add missing comma

Task-number: QDS-11061
Change-Id: Ie86affe6b9fe3d28a4bc49c012cd7287225085e0
Reviewed-by: Knud Dollereder <knud.dollereder@qt.io>
(cherry picked from commit a30134cf84)
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Thomas Hartmann
2024-09-18 14:31:39 +02:00
parent 3f95e21e8d
commit b9e5091cf8

View File

@@ -628,12 +628,8 @@ class UnsupportedRootObjectTypesByVisualDesigner : public QStringList
{ {
public: public:
UnsupportedRootObjectTypesByVisualDesigner() UnsupportedRootObjectTypesByVisualDesigner()
: QStringList({"QtObject" : QStringList(
"ListModel" {"QtObject", "ListModel", "Component", "Timer", "Package", "ApplicationWindow"})
"Component"
"Timer"
"Package",
"ApplicationWindow"})
{} {}
}; };