summaryrefslogtreecommitdiff
path: root/src/location/places/qplacereview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/location/places/qplacereview.cpp')
-rw-r--r--src/location/places/qplacereview.cpp22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/location/places/qplacereview.cpp b/src/location/places/qplacereview.cpp
index 94a0e1b6..83dc298c 100644
--- a/src/location/places/qplacereview.cpp
+++ b/src/location/places/qplacereview.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2015 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.
@@ -42,26 +42,6 @@
QT_BEGIN_NAMESPACE
-QPlaceReviewPrivate::QPlaceReviewPrivate()
-: QPlaceContentPrivate(), rating(0)
-{
-}
-
-QPlaceReviewPrivate::QPlaceReviewPrivate(const QPlaceReviewPrivate &other)
- : QPlaceContentPrivate(other)
-{
- dateTime = other.dateTime;
- text = other.text;
- language = other.language;
- rating = other.rating;
- reviewId = other.reviewId;
- title = other.title;
-}
-
-QPlaceReviewPrivate::~QPlaceReviewPrivate()
-{
-}
-
bool QPlaceReviewPrivate::compare(const QPlaceContentPrivate *other) const
{
const QPlaceReviewPrivate *od = static_cast<const QPlaceReviewPrivate *>(other);