diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-12-03 20:55:00 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-03 20:55:00 -0800 |
commit | 06711732c94600c8b3106b2e3260ebd69de53a98 (patch) | |
tree | 79425c5d8aaa30de64a75c4e2d766330a738f20a /qt-ui/diveplanner.h | |
parent | 623be2e46f8bd7aff83f0ab18328d10a0da6d100 (diff) | |
download | subsurface-06711732c94600c8b3106b2e3260ebd69de53a98.tar.gz |
Correct parameter names
It's very confusing when a parameter is called "minutes" but holds
seconds...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.h')
-rw-r--r-- | qt-ui/diveplanner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/diveplanner.h b/qt-ui/diveplanner.h index bc6f696ad..b5c78a93c 100644 --- a/qt-ui/diveplanner.h +++ b/qt-ui/diveplanner.h @@ -46,7 +46,7 @@ public: QList<QPair<int, int> > collectGases(dive *d); public slots: - int addStop(int meters = 0, int minutes = 0, int o2 = 0, int he = 0, int ccpoint = 0 ); + int addStop(int millimeters = 0, int seconds = 0, int o2 = 0, int he = 0, int ccpoint = 0 ); void addCylinder_clicked(); void setGFHigh(const int gfhigh); void setGFLow(const int ghflow); |