summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeocodereply_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/location/maps/qgeocodereply_p.h')
-rw-r--r--src/location/maps/qgeocodereply_p.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/location/maps/qgeocodereply_p.h b/src/location/maps/qgeocodereply_p.h
index f0897bd3..3f3770fe 100644
--- a/src/location/maps/qgeocodereply_p.h
+++ b/src/location/maps/qgeocodereply_p.h
@@ -67,21 +67,19 @@ class Q_LOCATION_PRIVATE_EXPORT QGeoCodeReplyPrivate
public:
QGeoCodeReplyPrivate();
QGeoCodeReplyPrivate(QGeoCodeReply::Error error, const QString &errorString);
- virtual ~QGeoCodeReplyPrivate();
- virtual QVariantMap extraData() const;
static const QGeoCodeReplyPrivate *get(const QGeoCodeReply &reply);
static QGeoCodeReplyPrivate *get(QGeoCodeReply &reply);
- QGeoCodeReply::Error error;
+ QGeoCodeReply::Error error = QGeoCodeReply::NoError;
QString errorString;
- bool isFinished;
+ bool isFinished = false;
QGeoShape viewport;
QList<QGeoLocation> locations;
- int limit;
- int offset;
+ qsizetype limit = -1;
+ qsizetype offset = 0;
private:
Q_DISABLE_COPY(QGeoCodeReplyPrivate)
};