QList<LoadingDescription> ThumbnailLoadThread::ThumbnailLoadThreadPriv::makeDescriptions(const QStringList& filePaths, int size) { QList<LoadingDescription> descriptions; { LoadingDescription description = createLoadingDescription(QString(), size, false); foreach(const QString& filePath, filePaths) { description.filePath = filePath; if (!checkDescription(description)) { continue; } descriptions << description; } }
QList<LoadingDescription> ThumbnailLoadThread::Private::makeDescriptions(const QList<ThumbnailIdentifier>& identifiers, int size) { QList<LoadingDescription> descriptions; { LoadingDescription description = createLoadingDescription(ThumbnailIdentifier(), size, false); foreach(const ThumbnailIdentifier& identifier, identifiers) { description.filePath = identifier.filePath; description.previewParameters.storageReference = identifier.id; if (!checkDescription(description)) { continue; } descriptions << description; } }