diff options
Diffstat (limited to 'qt-models/maplocationmodel.h')
-rw-r--r-- | qt-models/maplocationmodel.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qt-models/maplocationmodel.h b/qt-models/maplocationmodel.h index cb8252a3a..2aef697a2 100644 --- a/qt-models/maplocationmodel.h +++ b/qt-models/maplocationmodel.h @@ -13,7 +13,6 @@ class MapLocation { public: - explicit MapLocation(); explicit MapLocation(struct dive_site *ds, QGeoCoordinate coord, QString name, bool selected); QVariant getRole(int role) const; @@ -30,7 +29,7 @@ public: struct dive_site *divesite; QGeoCoordinate coordinate; QString name; - bool selected = false; + bool selected; }; class MapLocationModel : public QAbstractListModel |