| 23 | } |
| 24 | |
| 25 | auto BootEntryListModel::rowCount(const QModelIndex &parent) const -> int |
| 26 | { |
| 27 | if(parent.isValid()) |
| 28 | return 0; |
| 29 | |
| 30 | return static_cast<int>(entries.count()); |
| 31 | } |
| 32 | |
| 33 | auto BootEntryListModel::data(const QModelIndex &index, int role) const -> QVariant |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected