summaryrefslogtreecommitdiff
path: root/src/location/places/qplacereply_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/location/places/qplacereply_p.h')
-rw-r--r--src/location/places/qplacereply_p.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/location/places/qplacereply_p.h b/src/location/places/qplacereply_p.h
index 8fe57832..c044b595 100644
--- a/src/location/places/qplacereply_p.h
+++ b/src/location/places/qplacereply_p.h
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2021 The Qt Company Ltd.
+** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtLocation module of the Qt Toolkit.
@@ -58,13 +58,9 @@ QT_BEGIN_NAMESPACE
class QPlaceReplyPrivate
{
public:
- QPlaceReplyPrivate() :
- isFinished(false),
- error(QPlaceReply::NoError),
- errorString(QString()){}
virtual ~QPlaceReplyPrivate(){}
- bool isFinished;
- QPlaceReply::Error error;
+ bool isFinished = false;
+ QPlaceReply::Error error = QPlaceReply::NoError;
QString errorString;
};