summaryrefslogtreecommitdiffstats
path: root/src/webview/qwebviewloadrequest.cpp
blob: c5ae89254f97b4af5e3d8fa189b39711db2f67a0 (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
// 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 <QtWebView/private/qwebviewloadrequest_p.h>

QT_BEGIN_NAMESPACE

QWebViewLoadRequestPrivate::QWebViewLoadRequestPrivate()
{

}

QWebViewLoadRequestPrivate::QWebViewLoadRequestPrivate(const QUrl &url,
                                                       QWebView::LoadStatus status,
                                                       const QString &errorString)
    : m_url(url)
    , m_status(status)
    , m_errorString(errorString)
{

}

QWebViewLoadRequestPrivate::~QWebViewLoadRequestPrivate()
{

}

QT_END_NAMESPACE