| 72 | } |
| 73 | |
| 74 | int QmitkPropertyItemModel::columnCount(const QModelIndex &parent) const |
| 75 | { |
| 76 | if (parent.isValid()) |
| 77 | return static_cast<QmitkPropertyItem *>(parent.internalPointer())->GetColumnCount(); |
| 78 | else |
| 79 | return m_RootItem->GetColumnCount(); |
| 80 | } |
| 81 | |
| 82 | void QmitkPropertyItemModel::CreateRootItem() |
| 83 | { |
no test coverage detected