diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-27 15:27:37 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-08-27 15:35:38 +0300 |
commit | a7465aa35b4efd3bfc4bbd9be4d1572d25a05bb2 (patch) | |
tree | 9dfa5112b52705ae4f0e04f1e43b0307a7806f5a /plugins/webengine/webengineplugin.cpp | |
parent | Add CMakePresets.json (diff) | |
download | rekonq-a7465aa35b4efd3bfc4bbd9be4d1572d25a05bb2.tar.xz |
Rename rView to RekonqView
- move rview.hpp to include/
- move src/mainwindow/* to src/
Diffstat (limited to 'plugins/webengine/webengineplugin.cpp')
-rw-r--r-- | plugins/webengine/webengineplugin.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/webengine/webengineplugin.cpp b/plugins/webengine/webengineplugin.cpp index cf6811dc..0c3f2dcd 100644 --- a/plugins/webengine/webengineplugin.cpp +++ b/plugins/webengine/webengineplugin.cpp @@ -10,4 +10,6 @@ #include "webengineplugin.hpp" #include "webview.h" -rView *WebEnginePlugin::view(const QUrl &url) { return new WebView(url, nullptr); } +void WebEnginePlugin::init(RekonqSettings *) {} + +RekonqView *WebEnginePlugin::view(const QUrl &url) { return new WebView(url, nullptr); } |