| 33 | } |
| 34 | |
| 35 | int SequentialPropertyAdaptor::count() const |
| 36 | { |
| 37 | if (!m_value.canConvert<QVariantList>()) |
| 38 | return 0; |
| 39 | auto it = m_value.value<QSequentialIterable>(); |
| 40 | return it.size(); |
| 41 | } |
| 42 | |
| 43 | PropertyData SequentialPropertyAdaptor::propertyData(int index) const |
| 44 | { |