| 524 | } |
| 525 | |
| 526 | she::Surface* FileItem::getThumbnail() |
| 527 | { |
| 528 | ThumbnailMap::iterator it = thumbnail_map->find(m_filename); |
| 529 | if (it != thumbnail_map->end()) |
| 530 | return it->second; |
| 531 | else |
| 532 | return NULL; |
| 533 | } |
| 534 | |
| 535 | void FileItem::setThumbnail(she::Surface* thumbnail) |
| 536 | { |
no test coverage detected