Coding style: remove stray ';'

There was a stray semi-colon on the beginning of a line in
DiveObjectHelper.cpp. Remove it.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-11-07 23:30:14 +01:00 committed by Dirk Hohndel
parent 282e6a9f48
commit bef756073a

View file

@ -346,7 +346,7 @@ QString DiveObjectHelper::tripMeta() const
QDateTime firstTime = QDateTime::fromMSecsSinceEpoch(1000*dt->when, Qt::UTC);
QString firstMonth = firstTime.toString("MMM");
QString tripDate = QStringLiteral("%1@%2").arg(firstMonth,firstTime.toString("yy"));
;
if (title.isEmpty()) {
// so use the date range
QString firstYear = firstTime.toString("yyyy");