diff options
| author | Michal Klocek <michal.klocek@qt.io> | 2025-11-26 11:18:15 +0100 |
|---|---|---|
| committer | Michal Klocek <michal.klocek@qt.io> | 2025-12-01 16:04:09 +0100 |
| commit | 47094d1c95913a101e5acebf002624413e8fec0d (patch) | |
| tree | 3fea0f1e93669bf6759d78e44e5aabbbc62ffbcd /src/plugins/android/qandroidwebviewplugin.cpp | |
| parent | c20421d02e70346dd105d44612aaf90c33b29096 (diff) | |
Clean up and rename QAbstractWebView and QAbstractWebViewSettings
These are really just private implementations.
Task-number: QTBUG-131837
Change-Id: I0f70456ff78aa85a519e41d5b0e31b7086e8fc93
Reviewed-by: Moss Heim <moss.heim@qt.io>
Diffstat (limited to 'src/plugins/android/qandroidwebviewplugin.cpp')
| -rw-r--r-- | src/plugins/android/qandroidwebviewplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/qandroidwebviewplugin.cpp b/src/plugins/android/qandroidwebviewplugin.cpp index bceb553..dff221d 100644 --- a/src/plugins/android/qandroidwebviewplugin.cpp +++ b/src/plugins/android/qandroidwebviewplugin.cpp @@ -13,7 +13,7 @@ class QAndroidWebViewPlugin : public QWebViewPlugin Q_PLUGIN_METADATA(IID QWebViewPluginInterface_iid FILE "android.json") public: - QAbstractWebView *create(const QString &key, QWebView *view) const override + QWebViewPrivate *create(const QString &key, QWebView *view) const override { return (key == QLatin1String("webview")) ? new QAndroidWebViewPrivate(view) : nullptr; } |
