| 157 | } |
| 158 | |
| 159 | int LocalTreeItem::indexOf(const LocalTreeItem *item) const |
| 160 | { |
| 161 | auto it = std::find(begin(), end(), item); |
| 162 | return it == end() ? -1 : static_cast<int>(it - begin()); |
| 163 | } |
| 164 | |
| 165 | QModelIndex LocalTreeItem::index() const |
| 166 | { |
no outgoing calls
no test coverage detected