| 141 | } |
| 142 | |
| 143 | bool ValueTableModel::removeRow(int position) |
| 144 | { |
| 145 | beginRemoveRows(QModelIndex(), position, position); |
| 146 | bool success = rootItem->removeChildren(position); |
| 147 | endRemoveRows(); |
| 148 | return success; |
| 149 | } |
| 150 | |
| 151 | bool ValueTableModel::removeItem(ValueTableItem *item) |
| 152 | { |
no test coverage detected