From 83a7f1f5b46a4cbd33fcd197f2a956f765def871 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 12 Nov 2013 16:33:01 +0900 Subject: Use existing helper function And remove spurious extra ';' Signed-off-by: Dirk Hohndel --- qt-ui/models.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qt-ui/models.cpp') diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index 7a80521a2..2a9208389 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -175,7 +175,7 @@ cylinder_t* CylindersModel::cylinderAt(const QModelIndex& index) // so we only implement the two columns we care about void CylindersModel::passInData(const QModelIndex& index, const QVariant& value) { - cylinder_t *cyl = ¤t->cylinder[index.row()]; + cylinder_t *cyl = cylinderAt(index); switch(index.column()) { case SIZE: if (cyl->type.size.mliter != value.toInt()) { @@ -196,7 +196,7 @@ void CylindersModel::passInData(const QModelIndex& index, const QVariant& value) bool CylindersModel::setData(const QModelIndex& index, const QVariant& value, int role) { - cylinder_t *cyl = ¤t->cylinder[index.row()]; + cylinder_t *cyl = cylinderAt(index); switch(index.column()) { case TYPE: if (!value.isNull()) { @@ -1510,7 +1510,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const switch (role) { case Qt::DisplayRole: { struct DiveItem di; - di.dive = dive;; + di.dive = dive; char buf[80]; const QString unknown = tr("unknown"); -- cgit v1.2.3-70-g09d2