summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebengineregisterprotocolhandlerrequest.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-04-16 15:01:15 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-03 15:05:17 +0000
commit700877fab0fd04130815e75c935b8440f447b211 (patch)
treeef898ef23f6c1cf865708263fa80369ec7469fd4 /src/core/api/qwebengineregisterprotocolhandlerrequest.h
parentb81d7095825cdd4f486e83894c801e596f248936 (diff)
Cleanup coding style in src/core/api
Change-Id: I1c235d49a9520088142fbc89d21fc589d4037a4f Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'src/core/api/qwebengineregisterprotocolhandlerrequest.h')
-rw-r--r--src/core/api/qwebengineregisterprotocolhandlerrequest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/api/qwebengineregisterprotocolhandlerrequest.h b/src/core/api/qwebengineregisterprotocolhandlerrequest.h
index 281e81e73..67caf1590 100644
--- a/src/core/api/qwebengineregisterprotocolhandlerrequest.h
+++ b/src/core/api/qwebengineregisterprotocolhandlerrequest.h
@@ -47,7 +47,7 @@
namespace QtWebEngineCore {
class RegisterProtocolHandlerRequestController;
class WebContentsDelegateQt;
-}
+} // namespace QtWebEngineCore
QT_BEGIN_NAMESPACE
@@ -63,9 +63,9 @@ public:
QString scheme() const;
bool operator==(const QWebEngineRegisterProtocolHandlerRequest &that) const { return d_ptr == that.d_ptr; }
bool operator!=(const QWebEngineRegisterProtocolHandlerRequest &that) const { return d_ptr != that.d_ptr; }
+
private:
- QWebEngineRegisterProtocolHandlerRequest(
- QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController>);
+ QWebEngineRegisterProtocolHandlerRequest(QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController>);
friend QtWebEngineCore::WebContentsDelegateQt;
QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController> d_ptr;
};