summaryrefslogtreecommitdiffstats
path: root/qt-models/maplocationmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/maplocationmodel.h')
-rw-r--r--qt-models/maplocationmodel.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/qt-models/maplocationmodel.h b/qt-models/maplocationmodel.h
index 15000bc1d..a89695ccd 100644
--- a/qt-models/maplocationmodel.h
+++ b/qt-models/maplocationmodel.h
@@ -51,7 +51,6 @@ signals:
class MapLocationModel : public QAbstractListModel
{
Q_OBJECT
- Q_PROPERTY(int count READ count NOTIFY countChanged)
public:
MapLocationModel(QObject *parent = NULL);
@@ -59,7 +58,6 @@ public:
QVariant data(const QModelIndex &index, int role) const override;
int rowCount(const QModelIndex &parent) const override;
- int count();
void add(MapLocation *);
// If map is not null, it will be used to place new dive sites without GPS location at the center of the map
void reload(QObject *map);
@@ -78,9 +76,6 @@ private slots:
private:
QVector<MapLocation *> m_mapLocations;
QVector<dive_site *> m_selectedDs;
-
-signals:
- void countChanged(int c);
};
#endif