| 335 | } |
| 336 | |
| 337 | bool IconList::iconFileExists(const QString &key) const |
| 338 | { |
| 339 | auto iconEntry = icon(key); |
| 340 | if(!iconEntry) |
| 341 | { |
| 342 | return false; |
| 343 | } |
| 344 | return iconEntry->has(IconType::FileBased); |
| 345 | } |
| 346 | |
| 347 | const MMCIcon *IconList::icon(const QString &key) const |
| 348 | { |
no test coverage detected