From f60343eebbf6a31a4643dde9f4454f6ce84f61d3 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Wed, 7 Mar 2018 16:37:31 +0100 Subject: Dive pictures: replace picture struct by QString In imagedownloader.cpp the only thing we need from the picture struct is the filename. Therefore, use QStrings instead of the picture struct. This simplifies memory management. Remove the clone_picture() function, which is not needed anymore. Signed-off-by: Berthold Stoeger --- qt-models/divepicturemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qt-models') diff --git a/qt-models/divepicturemodel.cpp b/qt-models/divepicturemodel.cpp index 6a90c1431..33ac7e886 100644 --- a/qt-models/divepicturemodel.cpp +++ b/qt-models/divepicturemodel.cpp @@ -65,7 +65,7 @@ static void scaleImages(PictureEntry &entry, int maxSize) // Rescale in such a case to avoid resizing artifacts. if (thumbnail.isNull() || (thumbnail.size().width() < maxSize && thumbnail.size().height() < maxSize)) { qDebug() << "No thumbnail in cache for" << entry.filename; - thumbnail = getHashedImage(entry.picture).scaled(maxSize, maxSize, Qt::KeepAspectRatio); + thumbnail = getHashedImage(QString(entry.picture->filename)); addThumbnailToCache(thumbnail, entry); } -- cgit v1.2.3-70-g09d2