summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeoroutesegment.cpp
diff options
context:
space:
mode:
authorJesus Fernandez <jesus.fernandez@qt.io>2019-01-22 15:45:20 +0100
committerJesus Fernandez <Jesus.Fernandez@qt.io>2019-01-23 11:53:14 +0000
commit20a64642c1c4a535b750e8b86435141ca432b050 (patch)
tree4287c9def6419a5522a69c47e4a5399c8aae8010 /src/location/maps/qgeoroutesegment.cpp
parent8fbab5c949bf0fe1ec5e1e452a9c475681d7edc4 (diff)
downloadqtlocation-20a64642c1c4a535b750e8b86435141ca432b050.tar.gz
Unify semicolon usage in Q_UNUSED
Change-Id: I36dd6881b6f6f028869d63b6311cba7f52a99cc4 Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'src/location/maps/qgeoroutesegment.cpp')
-rw-r--r--src/location/maps/qgeoroutesegment.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/location/maps/qgeoroutesegment.cpp b/src/location/maps/qgeoroutesegment.cpp
index aff54fc7..0e350d0a 100644
--- a/src/location/maps/qgeoroutesegment.cpp
+++ b/src/location/maps/qgeoroutesegment.cpp
@@ -298,7 +298,7 @@ bool QGeoRouteSegmentPrivate::valid() const
void QGeoRouteSegmentPrivate::setValid(bool valid)
{
- Q_UNUSED(valid)
+ Q_UNUSED(valid);
}
bool QGeoRouteSegmentPrivate::isLegLastSegment() const
@@ -308,7 +308,7 @@ bool QGeoRouteSegmentPrivate::isLegLastSegment() const
void QGeoRouteSegmentPrivate::setLegLastSegment(bool lastSegment)
{
- Q_UNUSED(lastSegment)
+ Q_UNUSED(lastSegment);
}
int QGeoRouteSegmentPrivate::travelTime() const
@@ -318,7 +318,7 @@ int QGeoRouteSegmentPrivate::travelTime() const
void QGeoRouteSegmentPrivate::setTravelTime(int travelTime)
{
- Q_UNUSED(travelTime)
+ Q_UNUSED(travelTime);
}
qreal QGeoRouteSegmentPrivate::distance() const
@@ -328,7 +328,7 @@ qreal QGeoRouteSegmentPrivate::distance() const
void QGeoRouteSegmentPrivate::setDistance(qreal distance)
{
- Q_UNUSED(distance)
+ Q_UNUSED(distance);
}
QList<QGeoCoordinate> QGeoRouteSegmentPrivate::path() const
@@ -338,7 +338,7 @@ QList<QGeoCoordinate> QGeoRouteSegmentPrivate::path() const
void QGeoRouteSegmentPrivate::setPath(const QList<QGeoCoordinate> &path)
{
- Q_UNUSED(path)
+ Q_UNUSED(path);
}
QGeoManeuver QGeoRouteSegmentPrivate::maneuver() const
@@ -348,7 +348,7 @@ QGeoManeuver QGeoRouteSegmentPrivate::maneuver() const
void QGeoRouteSegmentPrivate::setManeuver(const QGeoManeuver &maneuver)
{
- Q_UNUSED(maneuver)
+ Q_UNUSED(maneuver);
}
QExplicitlySharedDataPointer<QGeoRouteSegmentPrivate> QGeoRouteSegmentPrivate::nextRouteSegment() const