mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Show dive site name in dive list
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
7fb35c98d3
commit
8bea7cbdc7
1 changed files with 3 additions and 3 deletions
|
@ -1191,7 +1191,7 @@ QVariant DiveItem::data(int column, int role) const
|
|||
retVal = dive->maxcns;
|
||||
break;
|
||||
case LOCATION:
|
||||
retVal = QString(dive->location);
|
||||
retVal = QString(get_dive_location(dive));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
@ -1232,7 +1232,7 @@ QVariant DiveItem::data(int column, int role) const
|
|||
retVal = dive->maxcns;
|
||||
break;
|
||||
case LOCATION:
|
||||
retVal = QString(dive->location);
|
||||
retVal = QString(get_dive_location(dive));
|
||||
break;
|
||||
case GAS:
|
||||
const char *gas_string = get_dive_gas_string(dive);
|
||||
|
@ -2110,7 +2110,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
|
|||
}
|
||||
if (row == 1) {
|
||||
if (col == 0)
|
||||
return QString(dive->location);
|
||||
return QString(get_dive_location(dive));
|
||||
if (col == 3)
|
||||
return QString(tr("Duration: %1 min")).arg(di.displayDuration());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue