| 126 | } |
| 127 | |
| 128 | bool ValueTableModel::insertRow(ValueTableItem *item) { |
| 129 | beginInsertRows(QModelIndex(), rootItem->childCount(), rootItem->childCount()); |
| 130 | bool success = rootItem->insertChildren(rootItem->childCount(), item); |
| 131 | endInsertRows(); |
| 132 | return success; |
| 133 | } |
| 134 | |
| 135 | bool ValueTableModel::insertRow(int position, ValueTableItem * &item) |
| 136 | { |
nothing calls this directly
no test coverage detected