mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Desktop: Fix build for Qt6
This seems to be needed to make the build work with Qt6, which is needed for M1 based Macs. Signed-off-by: Michael Keller <github@ike.ch>
This commit is contained in:
parent
e60baff940
commit
15bf145f14
3 changed files with 6 additions and 6 deletions
|
@ -59,7 +59,7 @@ QVariant DivesiteImportedModel::data(const QModelIndex &index, int role) const
|
|||
if (role == Qt::DisplayRole) {
|
||||
switch (index.column()) {
|
||||
case NAME:
|
||||
return ds->name;
|
||||
return QString(ds->name);
|
||||
case LOCATION:
|
||||
return printGPSCoords(&ds->location);
|
||||
case COUNTRY:
|
||||
|
@ -70,7 +70,7 @@ QVariant DivesiteImportedModel::data(const QModelIndex &index, int role) const
|
|||
get_dive_site_by_gps_proximity(&ds->location,
|
||||
40075000, divelog.sites);
|
||||
if (nearest_ds)
|
||||
return nearest_ds->name;
|
||||
return QString(nearest_ds->name);
|
||||
else
|
||||
return QString();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue