summaryrefslogtreecommitdiffstats
path: root/src/plugins/geoservices/nokia/placesv2/qplacecategoriesreplyhere.cpp
blob: 7248ac54addbdbab8bac9a7e9919d1772873371a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2015 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qplacecategoriesreplyhere.h"

QT_BEGIN_NAMESPACE

QPlaceCategoriesReplyHere::QPlaceCategoriesReplyHere(QObject *parent)
:   QPlaceReply(parent)
{
}

QPlaceCategoriesReplyHere::~QPlaceCategoriesReplyHere()
{
}

void QPlaceCategoriesReplyHere::emitFinished()
{
    setFinished(true);
    emit finished();
}

void QPlaceCategoriesReplyHere::setError(QPlaceReply::Error error_, const QString &errorString)
{
    QPlaceReply::setError(error_, errorString);
    emit errorOccurred(error_, errorString);
}

QT_END_NAMESPACE