| 204 | // Gathering information from svg files |
| 205 | QFileInfoList svgInfos = QDir(mCurrentDir).entryInfoList(QStringList() << "*.svg", QDir::NoDotAndDotDot | QDir::Files); |
| 206 | foreach (QFileInfo svgInfo, svgInfos) { |
| 207 | cureIdsFromSvgDom(createDomFromSvg(svgInfo.absoluteFilePath())); |
| 208 | } |
| 209 | |
| 210 | fitIdsFromFileSystem(); |
| 211 | QVector<QString> deleteCandidates; |
nothing calls this directly
no test coverage detected