blob: 0c3f2dcda26a9acb49739d8256a3f18ee56481d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ============================================================
* The rekonq project
* ============================================================
* SPDX-License-Identifier: GPL-3.0-only
* Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
* ============================================================
* Description: WebEngine plugin View factory
* ============================================================ */
#include "webengineplugin.hpp"
#include "webview.h"
void WebEnginePlugin::init(RekonqSettings *) {}
RekonqView *WebEnginePlugin::view(const QUrl &url) { return new WebView(url, nullptr); }
|