Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
QDS 4.7.0
-
None
-
d8d184fb4 (qds/dev), 31a20eb76 (qds/4.7)
Description
- Open QDS and create a default Qt for MCU's project.
- Add MouseArea component to the UI.
- Go to "Connections" panel and add a connection for MouseArea "onClicked" signal.
- Save the project and export it with qmlprojectexporter.
qmlprojectexporter fails with the following error:
error: onClicked definition requires 1 parameter(s) function onClicked() {
Looking through the MCU documentation, it seems that qmlprojectexporter expects to find the following:
Connections { target: mouseArea function onClicked(mouse: MouseEvent) {} }
Looks like the signal connection created in QDS is not compatible with Qt for MCUs.