| 79 | } |
| 80 | |
| 81 | QModelIndex QuickItemModel::parent(const QModelIndex &child) const |
| 82 | { |
| 83 | QQuickItem *childItem = reinterpret_cast<QQuickItem *>(child.internalPointer()); |
| 84 | return indexForItem(m_childParentMap.value(childItem)); |
| 85 | } |
| 86 | |
| 87 | QModelIndex QuickItemModel::index(int row, int column, const QModelIndex &parent) const |
| 88 | { |