diff options
author | Gaetan Bisson <bisson@archlinux.org> | 2015-09-23 21:12:18 -1000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-24 07:10:17 -0700 |
commit | 24471cfd0d71bab82e6e4ded68e593abdea9bb30 (patch) | |
tree | feb87c7ba30bdd4ccdcc8a89a7e5379e4e392819 | |
parent | 9102f23b424ea6b7c1734dce4d7712d69b9d5f80 (diff) | |
download | subsurface-24471cfd0d71bab82e6e4ded68e593abdea9bb30.tar.gz |
Initialize currUuid
Signed-off-by: Gaetan Bisson <bisson@archlinux.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/locationinformation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/locationinformation.cpp b/qt-ui/locationinformation.cpp index 6e6db0b34..213d63be1 100644 --- a/qt-ui/locationinformation.cpp +++ b/qt-ui/locationinformation.cpp @@ -360,6 +360,7 @@ bool DiveLocationModel::setData(const QModelIndex& index, const QVariant& value, DiveLocationLineEdit::DiveLocationLineEdit(QWidget *parent) : QLineEdit(parent), proxy(new DiveLocationFilterProxyModel()), model(new DiveLocationModel()), view(new DiveLocationListView()) { + currUuid = 0; location_line_edit = this; proxy->setSourceModel(model); |