diff options
Diffstat (limited to 'core/imagedownloader.cpp')
-rw-r--r-- | core/imagedownloader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/imagedownloader.cpp b/core/imagedownloader.cpp index 42ab52f0f..3b55dfd06 100644 --- a/core/imagedownloader.cpp +++ b/core/imagedownloader.cpp @@ -120,7 +120,7 @@ SHashedImage::SHashedImage(struct picture *picture) : QImage() load(filename); if (!isNull()) { // Make sure the hash still matches the image file - QtConcurrent::run(updateHash, clone_picture(picture)); + QtConcurrent::run(hashPicture, clone_picture(picture)); } else { // Interpret filename as URL QtConcurrent::run(loadPicture, clone_picture(picture), false); |