Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
6.0.0 Beta3
-
-
d7008c79d4ec023527ebfc118ad47f40075f244d (qt/qtdeclarative/dev)
Description
QQmlListProperty<T> still uses int32_t but should use Container<T*>::size_type
from:
using AtFunction = T *(QQmlListProperty<T> *, int);
to:
using AtFunction = T *(QQmlListProperty<T> *, Container<T*>::size_type);