| 92 | |
| 93 | |
| 94 | FunctionRef GenericEntryModel::getEntry(const QModelIndex& index) |
| 95 | { |
| 96 | if (!index.isValid() || index.row() >= (int)m_entries.size()) |
| 97 | return nullptr; |
| 98 | return m_entries[index.row()]; |
| 99 | } |
| 100 | |
| 101 | |
| 102 | void GenericEntryModel::performSort(int col, Qt::SortOrder order) |
no test coverage detected