| 294 | } |
| 295 | |
| 296 | uint8_t MultiIconPlugin::getIconFileId(uint8_t slotId) const |
| 297 | { |
| 298 | FileMgrService::FileId fileId = FileMgrService::FILE_ID_INVALID; |
| 299 | MutexGuard<MutexRecursive> guard(m_mutex); |
| 300 | |
| 301 | if (_MultiIconPlugin::View::MAX_ICON_SLOTS > slotId) |
| 302 | { |
| 303 | fileId = m_slots[slotId].fileId; |
| 304 | } |
| 305 | |
| 306 | return fileId; |
| 307 | } |
| 308 | |
| 309 | bool MultiIconPlugin::loadIcon(uint8_t slotId, FileMgrService::FileId fileId) |
| 310 | { |
nothing calls this directly
no outgoing calls
no test coverage detected