Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
6.7.0 RC2
-
None
Description
The following code
import QtQuick import QtQuick.Controls.Basic Window { width: 640 height: 480 visible: true title: qsTr("Hello foo Button!") property list<Button> foo: [] property bool hasFooButtons: foo.some(el => el.text === "foo") }
generates a new message in 6.7.0rc
Warning: Main.qml: Object type function is not derived from QObject or QQmlComponent. You may need to fully qualify all names in C++ so that moc can see them. You may also need to add qt_extract_metatypes(<target containing >). [compiler]
which I can't seem to get rid of in the moment. Does it point to "something that I should do differently"?
Attachments
Issue Links
- relates to
-
QTBUG-124278 QML compiling or linting: add more log levels for warnings/errors
- Reported