aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/downloadfromdivecomputer.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-08 09:32:36 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-08 09:33:52 -0800
commita20040a561e3108abab3da9f4fac9be662b8ca24 (patch)
treedd9c4e1913fe5fbfed9214af1a945474ce1658e0 /qt-ui/downloadfromdivecomputer.cpp
parentc1bc29bd4b05dafb26dbc1f94ed4070b07612f59 (diff)
downloadsubsurface-a20040a561e3108abab3da9f4fac9be662b8ca24.tar.gz
Fix missing return value
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r--qt-ui/downloadfromdivecomputer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp
index 94b89ef5b..131a4bbdf 100644
--- a/qt-ui/downloadfromdivecomputer.cpp
+++ b/qt-ui/downloadfromdivecomputer.cpp
@@ -555,6 +555,7 @@ bool DiveImportedModel::setData(const QModelIndex &index, const QVariant &value,
checkStates[index.row() + firstIndex ] = value.toBool();
dataChanged(index, index, QVector<int>() << Qt::CheckStateRole);
+ return true;
}
Qt::ItemFlags DiveImportedModel::flags(const QModelIndex &index) const {