summaryrefslogtreecommitdiffstats
path: root/core/imagedownloader.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-02-06 19:58:07 +0100
committerGravatar Robert C. Helling <helling@atdotde.de>2018-02-07 09:44:43 +0100
commit9986ce25d77d7abe8bdf5c1fca6ac98893ff2f10 (patch)
tree9a0c84cb2307245e9956139cc06a977d07f86dc5 /core/imagedownloader.cpp
parent218ea948316fe9e1581935becac8f1225d16e955 (diff)
downloadsubsurface-9986ce25d77d7abe8bdf5c1fca6ac98893ff2f10.tar.gz
Cleanup: Make local helpers and variables of static linkage
In core/imagedownloader.cpp the helpers cloudImageUrl() and loadPicture() are made of static linkage. The global variables queuedPictures and pictureQueueMutex were moved into the loadPicture() function, because they are used only there. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/imagedownloader.cpp')
-rw-r--r--core/imagedownloader.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/imagedownloader.cpp b/core/imagedownloader.cpp
index 57e76e2ff..62308fb5d 100644
--- a/core/imagedownloader.cpp
+++ b/core/imagedownloader.cpp
@@ -9,7 +9,7 @@
#include <QtConcurrent>
-QUrl cloudImageURL(const char *hash)
+static QUrl cloudImageURL(const char *hash)
{
return QUrl::fromUserInput(QString("https://cloud.subsurface-divelog.org/images/").append(hash));
}
@@ -78,11 +78,11 @@ void ImageDownloader::saveImage(QNetworkReply *reply)
}
-QSet<QString> queuedPictures;
-QMutex pictureQueueMutex;
-
-void loadPicture(struct picture *picture, bool fromHash)
+static void loadPicture(struct picture *picture, bool fromHash)
{
+ static QSet<QString> queuedPictures;
+ static QMutex pictureQueueMutex;
+
if (!picture)
return;
QMutexLocker locker(&pictureQueueMutex);