| 119 | } |
| 120 | |
| 121 | void ProjectFilterProvider::updateProjectFilters(IProject* project) |
| 122 | { |
| 123 | Filters newFilters = deserialize(readFilters(project->projectConfiguration())); |
| 124 | Filters& filters = m_filters[project]; |
| 125 | if (filters != newFilters) { |
| 126 | qCDebug(PLUGIN_PROJECTFILTER) << "project filter changed:" << project->name(); |
| 127 | filters = newFilters; |
| 128 | emit filterChanged(this, project); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | void ProjectFilterProvider::projectAboutToBeOpened(IProject* project) |
| 133 | { |
no test coverage detected