| 132 | } |
| 133 | |
| 134 | QString itemMemoryGetFormat(QString filePath) |
| 135 | { |
| 136 | auto validItems = getAllValidItems(); |
| 137 | |
| 138 | for (auto item : validItems) |
| 139 | if (item.filePath == filePath) |
| 140 | return item.format; |
| 141 | |
| 142 | return {}; |
| 143 | } |
| 144 | |
| 145 | } // namespace itemMemoryHandler |
no test coverage detected