| 171 | } |
| 172 | |
| 173 | void AbstractDelegate::contentData_append(QQmlListProperty<QObject> *prop, QObject *object) |
| 174 | { |
| 175 | AbstractDelegate *delegate = static_cast<AbstractDelegate *>(prop->object); |
| 176 | if (!delegate) { |
| 177 | return; |
| 178 | } |
| 179 | |
| 180 | // QQuickItem *item = qobject_cast<QQuickItem *>(object); |
| 181 | delegate->m_contentData.append(object); |
| 182 | } |
| 183 | |
| 184 | int AbstractDelegate::contentData_count(QQmlListProperty<QObject> *prop) |
| 185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected