Improve the trip header

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Linus Torvalds 2013-06-13 08:19:23 -07:00 committed by Dirk Hohndel
parent e34da61362
commit 788c513dd4
2 changed files with 5 additions and 6 deletions

View file

@ -786,7 +786,7 @@ QVariant TripItem::data(int column, int role) const
if (role == Qt::DisplayRole) {
switch (column) {
case NR:
ret = QString(trip->location) + QString(get_trip_date_string(trip->when, trip->nrdives));
ret = QString(trip->location) + ", " + QString(get_trip_date_string(trip->when, trip->nrdives));
break;
}
}