| 154 | |
| 155 | |
| 156 | SymbolRef GenericExportsModel::getSymbol(const QModelIndex& index) |
| 157 | { |
| 158 | if (!index.isValid() || index.row() >= (int)m_entries.size()) |
| 159 | return nullptr; |
| 160 | return m_entries[index.row()]; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | void GenericExportsModel::performSort(int col, Qt::SortOrder order) |
no test coverage detected