aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-12-10 11:36:42 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-12 10:10:01 -0500
commit85e6e905592b6e5356c18d3b64a84f03a163b872 (patch)
tree9953e70c575bc65d5d053ae5c46d88eccbcde2c0
parentebe317d6441b9eb5359a3f9f908ece69a4e4ea7d (diff)
downloadsubsurface-85e6e905592b6e5356c18d3b64a84f03a163b872.tar.gz
core: uploadDiveLogsDE::prepareDives no longer need to be public
Integration into desktop-widgets is complete. Move prepareDives() from public to private Signed-off-by: Jan Iversen <jan@casacondor.com>
-rw-r--r--core/uploadDiveLogsDE.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/uploadDiveLogsDE.h b/core/uploadDiveLogsDE.h
index 88022b734..5c17e64a5 100644
--- a/core/uploadDiveLogsDE.h
+++ b/core/uploadDiveLogsDE.h
@@ -13,9 +13,6 @@ public:
static uploadDiveLogsDE *instance();
void doUpload(bool selected, const QString &userid, const QString &password);
- // only to be used in desktop-widgets::subsurfacewebservices
- bool prepareDives(const QString &tempfile, const bool selected);
-
private slots:
void updateProgressSlot(qint64 current, qint64 total);
void uploadFinishedSlot();
@@ -32,6 +29,9 @@ private:
void uploadDives(const QString &filename, const QString &userid, const QString &password);
+ // only to be used in desktop-widgets::subsurfacewebservices
+ bool prepareDives(const QString &tempfile, const bool selected);
+
QNetworkReply *reply;
QHttpMultiPart *multipart;
QTimer timeout;