MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / checkDirForEquateFiles

Method checkDirForEquateFiles

gui/qt/sendinghandler.cpp:268–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266}
267
268void SendingHandler::checkDirForEquateFiles(QString &dirPath) {
269 QDirIterator dirIt(dirPath, QDirIterator::NoIteratorFlags);
270 while (dirIt.hasNext()) {
271 dirIt.next();
272 QString dirItFile = dirIt.filePath();
273 if (QFileInfo(dirItFile).isFile()) {
274 QString suffix = QFileInfo(dirItFile).suffix();
275 if (suffix == QStringLiteral("map") ||
276 suffix == QStringLiteral("inc") ||
277 suffix == QStringLiteral("lab")) {
278 emit loadEquateFile(dirItFile);
279 }
280 }
281 }
282}

Callers

nothing calls this directly

Calls 1

nextMethod · 0.80

Tested by

no test coverage detected