diff options
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/maintab.cpp | 5 | ||||
-rw-r--r-- | qt-ui/models.cpp | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 16c0a1f14..763c61ec5 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -13,6 +13,7 @@ #include "globe.h" #include "completionmodels.h" #include "diveplanner.h" +#include "divelist.h" #include "qthelper.h" #include <QLabel> @@ -499,6 +500,10 @@ void MainTab::acceptChanges() } } + if (current_dive->divetrip) { + current_dive->divetrip->when = current_dive->when; + find_new_trip_start_time(current_dive->divetrip); + } if (editMode == ADD || editMode == MANUALLY_ADDED_DIVE) { // clean up the dive data (get duration, depth information from samples) fixup_dive(current_dive); diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index 2a0f9e98e..d0c244917 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -929,7 +929,10 @@ QVariant TripItem::data(int column, int role) const if (role == Qt::DisplayRole) { switch (column) { case DiveTripModel::NR: - ret = QString(trip->location) + ", " + get_trip_date_string(trip->when, trip->nrdives); + if (trip->location && *trip->location) + ret = QString(trip->location) + ", " + get_trip_date_string(trip->when, trip->nrdives); + else + ret = get_trip_date_string(trip->when, trip->nrdives); break; } } |