diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-02-28 15:43:54 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-02-28 15:45:26 +0100 |
commit | 10af45d6dce8b02b17ea9a63342acb0b310b2c8f (patch) | |
tree | 3d45b1a8d153745d440f8259c12ed6161cfd4561 /qt-mobile/qmlmanager.h | |
parent | 26779a9af5beb10a4e0dd50a418450cab5960137 (diff) | |
download | subsurface-10af45d6dce8b02b17ea9a63342acb0b310b2c8f.tar.gz |
QML UI: we no longer use the return value of commitChanges()
So make it a void function.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qmlmanager.h')
-rw-r--r-- | qt-mobile/qmlmanager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h index fec29c13c..33e356940 100644 --- a/qt-mobile/qmlmanager.h +++ b/qt-mobile/qmlmanager.h @@ -84,11 +84,11 @@ public slots: void loadDivesWithValidCredentials(); void loadDiveProgress(int percent); void provideAuth(QNetworkReply *reply, QAuthenticator *auth); - QString commitChanges(QString diveId, QString date, QString location, - QString gps, QString duration, QString depth, - QString airtemp, QString watertemp, QString suit, - QString buddy, QString diveMaster, QString weight, QString notes, - QString startpressure, QString endpressure, QString gasmix); + void commitChanges(QString diveId, QString date, QString location, + QString gps, QString duration, QString depth, + QString airtemp, QString watertemp, QString suit, + QString buddy, QString diveMaster, QString weight, QString notes, + QString startpressure, QString endpressure, QString gasmix); void saveChanges(); void deleteDive(int id); |