mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: rename slot in uploadDiveLogsDE
The difference between slot names and signal names was to insignificant e.g. uploadFinish (signal) uploadFinished (slot). Change slot names to slot_<name> should clear any confusion. Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
parent
4ee7cb7d1d
commit
fa8acc0f40
2 changed files with 12 additions and 12 deletions
|
@ -17,10 +17,10 @@ public:
|
|||
bool prepareDives(const QString &tempfile, const bool selected);
|
||||
|
||||
private slots:
|
||||
void updateProgress(qint64 current, qint64 total);
|
||||
void uploadFinished();
|
||||
void uploadTimeout();
|
||||
void uploadError(QNetworkReply::NetworkError error);
|
||||
void updateProgressSlot(qint64 current, qint64 total);
|
||||
void uploadFinishedSlot();
|
||||
void uploadTimeoutSlot();
|
||||
void uploadErrorSlot(QNetworkReply::NetworkError error);
|
||||
|
||||
signals:
|
||||
void uploadFinish(bool success, const QString &text);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue