| 67 | } |
| 68 | |
| 69 | void ModModel::searchWithTerm(const QString& term, unsigned int sort, bool filter_changed) |
| 70 | { |
| 71 | if (m_search_term == term && m_search_term.isNull() == term.isNull() && m_current_sort_index == sort && !filter_changed) { |
| 72 | return; |
| 73 | } |
| 74 | |
| 75 | setSearchTerm(term); |
| 76 | m_current_sort_index = sort; |
| 77 | |
| 78 | refresh(); |
| 79 | } |
| 80 | |
| 81 | bool ModModel::isPackInstalled(ModPlatform::IndexedPack::Ptr pack) const |
| 82 | { |
no outgoing calls
no test coverage detected