| 114 | |
| 115 | |
| 116 | BNStringReference GenericStringsModel::getStringRefAt(const QModelIndex& index) const |
| 117 | { |
| 118 | if (!index.isValid() || index.row() >= (int)m_entries.size()) |
| 119 | return BNStringReference{}; |
| 120 | return m_entries[index.row()]; |
| 121 | } |
| 122 | |
| 123 | void GenericStringsModel::performSort(int col, Qt::SortOrder order) |
| 124 | { |
no test coverage detected