summaryrefslogtreecommitdiffstats
path: root/qt-ui/models.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-06-07 14:59:06 -0300
committerGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-06-07 14:59:06 -0300
commit478c24d79795b34efb42c1ac29abd8fa777b9c90 (patch)
treef901f4af2463119b1c4c0ca5dff0150f81e5cd0e /qt-ui/models.cpp
parent24446f9c3ce3b48c59b2ceb212b7ac49eb6dbff7 (diff)
downloadsubsurface-478c24d79795b34efb42c1ac29abd8fa777b9c90.tar.gz
Removed the buttons on the Edit Dive computers.
This edit dive computers thing doesn't really need buttons anyway. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r--qt-ui/models.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index 787dbd8cf..6cb1fa079 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -1198,10 +1198,12 @@ Qt::ItemFlags DiveComputerModel::flags(const QModelIndex& index) const
bool DiveComputerModel::setData(const QModelIndex& index, const QVariant& value, int role)
{
struct device_info *nnl = head_of_device_info_list();
+
for(int i = 0; i < index.row(); i++){
nnl = nnl->next;
}
QByteArray v = value.toByteArray();
nnl->nickname = strdup(v.data()); // how should I free this before setting a new one?
+ // set_dc_nickname(dive); -> should this be used instead?
}