| 107 | } |
| 108 | |
| 109 | QStringList CheckStatistics::getTools() const |
| 110 | { |
| 111 | QSet<QString> ret; |
| 112 | for (const QString& tool: mStyle.keys()) ret.insert(tool); |
| 113 | for (const QString& tool: mWarning.keys()) ret.insert(tool); |
| 114 | for (const QString& tool: mPerformance.keys()) ret.insert(tool); |
| 115 | for (const QString& tool: mPortability.keys()) ret.insert(tool); |
| 116 | for (const QString& tool: mError.keys()) ret.insert(tool); |
| 117 | return ret.values(); |
| 118 | } |