diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2017-10-11 22:03:03 +0200 |
---|---|---|
committer | Robert C. Helling <helling@atdotde.de> | 2017-10-16 17:14:17 +0200 |
commit | bfe52f66892c9d015d717c8c64f60e36704ab182 (patch) | |
tree | c9c53be5c1de3d1a3fd496e54b7038199e79fb62 /qt-models/diveplannermodel.h | |
parent | 3e67bfaea6ff4f379c4b84784c31736cf822a7d3 (diff) | |
download | subsurface-bfe52f66892c9d015d717c8c64f60e36704ab182.tar.gz |
Correctly name member function gasChange of DivePlannerPointsModel
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'qt-models/diveplannermodel.h')
-rw-r--r-- | qt-models/diveplannermodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/diveplannermodel.h b/qt-models/diveplannermodel.h index 8e853abf8..ba9db5e19 100644 --- a/qt-models/diveplannermodel.h +++ b/qt-models/diveplannermodel.h @@ -31,7 +31,7 @@ public: virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole); virtual Qt::ItemFlags flags(const QModelIndex &index) const; - void gaschange(const QModelIndex &index, int newcylinderid); + void gasChange(const QModelIndex &index, int newcylinderid); void cylinderRenumber(int mapping[]); void removeSelectedPoints(const QVector<int> &rows); void setPlanMode(Mode mode); |