mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Remove unused method LocationInformationModel::addDiveSite()
The call to this method was removed in commit f4c31f110f
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
a7d71ea167
commit
d1545b27b4
2 changed files with 0 additions and 15 deletions
|
@ -131,20 +131,6 @@ void LocationInformationModel::update()
|
||||||
endResetModel();
|
endResetModel();
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t LocationInformationModel::addDiveSite(const QString& name, timestamp_t divetime, int lon, int lat)
|
|
||||||
{
|
|
||||||
degrees_t latitude, longitude;
|
|
||||||
latitude.udeg = lat;
|
|
||||||
longitude.udeg = lon;
|
|
||||||
|
|
||||||
beginInsertRows(QModelIndex(), dive_site_table.nr + 2, dive_site_table.nr + 2);
|
|
||||||
uint32_t uuid = create_dive_site_with_gps(name.toUtf8().data(), latitude, longitude, divetime);
|
|
||||||
qSort(dive_site_table.dive_sites, dive_site_table.dive_sites + dive_site_table.nr, dive_site_less_than);
|
|
||||||
internalRowCount = dive_site_table.nr;
|
|
||||||
endInsertRows();
|
|
||||||
return uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool LocationInformationModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
bool LocationInformationModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
||||||
{
|
{
|
||||||
if (!index.isValid() || index.row() < 2)
|
if (!index.isValid() || index.row() < 2)
|
||||||
|
|
|
@ -23,7 +23,6 @@ public:
|
||||||
int columnCount(const QModelIndex &parent) const;
|
int columnCount(const QModelIndex &parent) const;
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||||
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
|
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
|
||||||
uint32_t addDiveSite(const QString& name, timestamp_t divetime, int lat = 0, int lon = 0);
|
|
||||||
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
||||||
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
|
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
|
||||||
void setFirstRowTextField(QLineEdit *textField);
|
void setFirstRowTextField(QLineEdit *textField);
|
||||||
|
|
Loading…
Reference in a new issue