mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-18 01:46:16 +00:00
When changing the index of the combobox we were discarting the dive_site_id. This fixes it. Now I need to understand what's happening to the globe. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
20 lines
528 B
C++
20 lines
528 B
C++
#ifndef DIVELOCATIONMODEL_H
|
|
#define DIVELOCATIONMODEL_H
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
class LocationInformationModel : public QAbstractListModel {
|
|
Q_OBJECT
|
|
public:
|
|
enum { DIVE_SITE_UUID = Qt::UserRole+1};
|
|
static LocationInformationModel *instance();
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
|
|
public slots:
|
|
void update();
|
|
private:
|
|
LocationInformationModel(QObject *obj = 0);
|
|
int internalRowCount;
|
|
};
|
|
|
|
#endif
|