Details
-
Technical task
-
Resolution: Unresolved
-
P2: Important
Description
I run qmllint (recent dev) against example from here and got:
Cannot assign binding of type QQmlListProperty<QObject> to QList<QObject *> buttons: column.children ^^^^^^^^^^^^^^^
code:
import QtQuick.Controls 2.15 import QtQuick 2.15 Item { ButtonGroup { buttons: column.children } Column { id: column RadioButton { checked: true text: qsTr("DAB") } RadioButton { text: qsTr("FM") } RadioButton { text: qsTr("AM") } } }