From 6427564d33caf59a85e6521366afc5e82fefa5fd Mon Sep 17 00:00:00 2001 From: Sander Kleijwegt Date: Fri, 4 Sep 2015 12:23:19 +0200 Subject: Hide current dive site from dive sites with same coordinates. Signed-off-by: Sander Kleijwegt Signed-off-by: Dirk Hohndel --- qt-models/divelocationmodel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'qt-models') diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp index 47037b576..6e1bbaadb 100644 --- a/qt-models/divelocationmodel.cpp +++ b/qt-models/divelocationmodel.cpp @@ -189,6 +189,7 @@ bool filter_same_gps_cb (QAbstractItemModel *model, int sourceRow, const QModelI { int ref_lat = displayed_dive_site.latitude.udeg; int ref_lon = displayed_dive_site.longitude.udeg; + int ref_uuid = displayed_dive_site.uuid; QSortFilterProxyModel *self = (QSortFilterProxyModel*) model; int ds_uuid = self->sourceModel()->index(sourceRow, LocationInformationModel::UUID, parent).data().toInt(); @@ -197,5 +198,5 @@ bool filter_same_gps_cb (QAbstractItemModel *model, int sourceRow, const QModelI if (!ds) return false; - return (ds->latitude.udeg == ref_lat && ds->longitude.udeg == ref_lon); + return (ds->latitude.udeg == ref_lat && ds->longitude.udeg == ref_lon && ds->uuid != ref_uuid); } \ No newline at end of file -- cgit v1.2.3-70-g09d2