MCPcopy Create free account
hub / github.com/QuasarApp/CQtDeployer / isDebugFile

Method isDebugFile

src/Deploy/src/deploycore.cpp:692–701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

690}
691
692bool DeployCore::isDebugFile(const QString &file) {
693 auto debug = debugExtensions();
694 for (const auto& debugEx: debug) {
695 if (file.contains(debugEx, Qt::CaseInsensitive)) {
696 return true;
697 }
698 }
699
700 return false;
701}
702
703int DeployCore::find(const QString &str, const QStringList &list) {
704 for (int i = 0 ; i < list.size(); ++i) {

Callers

nothing calls this directly

Calls 1

containsMethod · 0.80

Tested by

no test coverage detected