| 66 | } |
| 67 | |
| 68 | void playlistItemImageFile::loadFrame(int, bool, bool, bool emitSignals) |
| 69 | { |
| 70 | this->imageLoading = true; |
| 71 | this->frame.loadCurrentImageFromFile(this->properties().name); |
| 72 | this->imageLoading = false; |
| 73 | this->needToLoadImage = false; |
| 74 | |
| 75 | if (emitSignals) |
| 76 | emit SignalItemChanged(true, RECACHE_NONE); |
| 77 | } |
| 78 | |
| 79 | void playlistItemImageFile::savePlaylist(QDomElement &root, const QDir &playlistDir) const |
| 80 | { |
nothing calls this directly
no test coverage detected