diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-06-13 08:19:23 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-06-13 20:00:20 +0200 |
commit | 788c513dd4090dcba78b51b1a419ea504ec74672 (patch) | |
tree | efbbdba11e73bfdfce9dcea77c63f626f48b4d71 /qt-ui | |
parent | e34da61362c0a64b8fd932c3363421c766595d4a (diff) | |
download | subsurface-788c513dd4090dcba78b51b1a419ea504ec74672.tar.gz |
Improve the trip header
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index 1cc9ab869..601f2f628 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -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; } } |