| 42 | static bool checkValidFile(const char *path) { |
| 43 | QString npath(path); |
| 44 | foreach (const QString &str, valid_suffixes) { |
| 45 | if (npath.endsWith(str, Qt::CaseInsensitive)) { |
| 46 | bundleList.append(path); |
| 47 | return true; |
| 48 | } |
| 49 | } |
| 50 | return false; |
| 51 | } |
| 52 |
nothing calls this directly
no test coverage detected