summaryrefslogtreecommitdiff
path: root/src/positioning/qgeopath.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/positioning/qgeopath.h')
-rw-r--r--src/positioning/qgeopath.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/positioning/qgeopath.h b/src/positioning/qgeopath.h
index 654c9c32..dc5052af 100644
--- a/src/positioning/qgeopath.h
+++ b/src/positioning/qgeopath.h
@@ -81,15 +81,15 @@ public:
Q_INVOKABLE void translate(double degreesLatitude, double degreesLongitude);
Q_INVOKABLE QGeoPath translated(double degreesLatitude, double degreesLongitude) const;
- Q_INVOKABLE double length(int indexFrom = 0, int indexTo = -1) const;
- Q_INVOKABLE int size() const;
+ Q_INVOKABLE double length(qsizetype indexFrom = 0, qsizetype indexTo = -1) const;
+ Q_INVOKABLE qsizetype size() const;
Q_INVOKABLE void addCoordinate(const QGeoCoordinate &coordinate);
- Q_INVOKABLE void insertCoordinate(int index, const QGeoCoordinate &coordinate);
- Q_INVOKABLE void replaceCoordinate(int index, const QGeoCoordinate &coordinate);
- Q_INVOKABLE QGeoCoordinate coordinateAt(int index) const;
+ Q_INVOKABLE void insertCoordinate(qsizetype index, const QGeoCoordinate &coordinate);
+ Q_INVOKABLE void replaceCoordinate(qsizetype index, const QGeoCoordinate &coordinate);
+ Q_INVOKABLE QGeoCoordinate coordinateAt(qsizetype index) const;
Q_INVOKABLE bool containsCoordinate(const QGeoCoordinate &coordinate) const;
Q_INVOKABLE void removeCoordinate(const QGeoCoordinate &coordinate);
- Q_INVOKABLE void removeCoordinate(int index);
+ Q_INVOKABLE void removeCoordinate(qsizetype index);
Q_INVOKABLE QString toString() const;