Details
-
Suggestion
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
None
Description
Would it be possible to support QUrl types in the ListModel?
Here is the list of currently supported types:
\qtdeclarative\src\qml\types\qqmllistmodel.cpp
case QVariant::Double: type = Role::Number; break; case QVariant::Int: type = Role::Number; break; case QVariant::UserType: type = Role::List; break; case QVariant::Bool: type = Role::Bool; break; case QVariant::String: type = Role::String; break; case QVariant::Map: type = Role::VariantMap; break; case QVariant::DateTime: type = Role::DateTime; break;