diff options
| author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2025-07-25 11:25:29 +0200 |
|---|---|---|
| committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2025-07-27 12:38:16 +0200 |
| commit | 95051932ed2902eeb6250f033b5bd5dc5fadff9c (patch) | |
| tree | 7fb1047c868d133a7ab1bae4cb2df31d9003acb7 /src/core/api/qwebengineprofile.cpp | |
| parent | cd5173e13cbbcf6ba2df311c23d08f9ce3eab30e (diff) | |
API-review webenginecore fixes
Pick-to: 6.10
Task-number: QTBUG-137478
Change-Id: I9c419f6e1349aef34237da0cf85cbd4a1968fbc2
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Diffstat (limited to 'src/core/api/qwebengineprofile.cpp')
| -rw-r--r-- | src/core/api/qwebengineprofile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/api/qwebengineprofile.cpp b/src/core/api/qwebengineprofile.cpp index dbd629b33..5b523dd87 100644 --- a/src/core/api/qwebengineprofile.cpp +++ b/src/core/api/qwebengineprofile.cpp @@ -1101,10 +1101,10 @@ QWebEngineClientHints *QWebEngineProfile::clientHints() const \since 6.10 \sa QWebEngineExtensionManager */ -QWebEngineExtensionManager *QWebEngineProfile::extensionManager() +QWebEngineExtensionManager *QWebEngineProfile::extensionManager() const { #if QT_CONFIG(webengine_extensions) - Q_D(QWebEngineProfile); + Q_D(const QWebEngineProfile); return d->profileAdapter()->extensionManager(); #else return nullptr; |
