summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeomaneuver.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/qgeomaneuver.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/qgeomaneuver.cpp')
-rw-r--r--src/location/maps/qgeomaneuver.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/location/maps/qgeomaneuver.cpp b/src/location/maps/qgeomaneuver.cpp
index 22f6f587..1dee942a 100644
--- a/src/location/maps/qgeomaneuver.cpp
+++ b/src/location/maps/qgeomaneuver.cpp
@@ -356,7 +356,7 @@ bool QGeoManeuverPrivate::valid() const
void QGeoManeuverPrivate::setValid(bool valid)
{
- Q_UNUSED(valid)
+ Q_UNUSED(valid);
}
QString QGeoManeuverPrivate::id() const
@@ -366,7 +366,7 @@ QString QGeoManeuverPrivate::id() const
void QGeoManeuverPrivate::setId(const QString id)
{
- Q_UNUSED(id)
+ Q_UNUSED(id);
}
QGeoCoordinate QGeoManeuverPrivate::position() const
@@ -376,7 +376,7 @@ QGeoCoordinate QGeoManeuverPrivate::position() const
void QGeoManeuverPrivate::setPosition(const QGeoCoordinate &position)
{
- Q_UNUSED(position)
+ Q_UNUSED(position);
}
QString QGeoManeuverPrivate::text() const
@@ -386,7 +386,7 @@ QString QGeoManeuverPrivate::text() const
void QGeoManeuverPrivate::setText(const QString &text)
{
- Q_UNUSED(text)
+ Q_UNUSED(text);
}
QGeoManeuver::InstructionDirection QGeoManeuverPrivate::direction() const
@@ -396,7 +396,7 @@ QGeoManeuver::InstructionDirection QGeoManeuverPrivate::direction() const
void QGeoManeuverPrivate::setDirection(QGeoManeuver::InstructionDirection direction)
{
- Q_UNUSED(direction)
+ Q_UNUSED(direction);
}
int QGeoManeuverPrivate::timeToNextInstruction() const
@@ -406,7 +406,7 @@ int QGeoManeuverPrivate::timeToNextInstruction() const
void QGeoManeuverPrivate::setTimeToNextInstruction(int timeToNextInstruction)
{
- Q_UNUSED(timeToNextInstruction)
+ Q_UNUSED(timeToNextInstruction);
}
qreal QGeoManeuverPrivate::distanceToNextInstruction() const
@@ -416,7 +416,7 @@ qreal QGeoManeuverPrivate::distanceToNextInstruction() const
void QGeoManeuverPrivate::setDistanceToNextInstruction(qreal distanceToNextInstruction)
{
- Q_UNUSED(distanceToNextInstruction)
+ Q_UNUSED(distanceToNextInstruction);
}
QGeoCoordinate QGeoManeuverPrivate::waypoint() const
@@ -426,7 +426,7 @@ QGeoCoordinate QGeoManeuverPrivate::waypoint() const
void QGeoManeuverPrivate::setWaypoint(const QGeoCoordinate &waypoint)
{
- Q_UNUSED(waypoint)
+ Q_UNUSED(waypoint);
}
QVariantMap QGeoManeuverPrivate::extendedAttributes() const
@@ -436,7 +436,7 @@ QVariantMap QGeoManeuverPrivate::extendedAttributes() const
void QGeoManeuverPrivate::setExtendedAttributes(const QVariantMap &extendedAttributes)
{
- Q_UNUSED(extendedAttributes)
+ Q_UNUSED(extendedAttributes);
}