aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlabstracturlinterceptor.h
diff options
context:
space:
mode:
authorJesus Fernandez <jesus.fernandez@qt.io>2018-10-12 13:15:54 +0200
committerJesus Fernandez <Jesus.Fernandez@qt.io>2018-10-17 13:07:03 +0000
commiteef179c9eb2c2d24e67c27742618555267e45e89 (patch)
tree9b6147b4cad1453b302eb755dcc14d8b448e2445 /src/qml/qml/qqmlabstracturlinterceptor.h
parent53481058c521ccfaed3c121afce5f80b8aeaa9b3 (diff)
Fix -Wweak-vtables warning
Change-Id: Id9f5dfe965dbd2ba42ecb981c9c2a7b3bf4380b6 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src/qml/qml/qqmlabstracturlinterceptor.h')
-rw-r--r--src/qml/qml/qqmlabstracturlinterceptor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlabstracturlinterceptor.h b/src/qml/qml/qqmlabstracturlinterceptor.h
index 665b37fb3a..af231f51b2 100644
--- a/src/qml/qml/qqmlabstracturlinterceptor.h
+++ b/src/qml/qml/qqmlabstracturlinterceptor.h
@@ -55,8 +55,8 @@ public:
UrlString = 0x1000
};
- QQmlAbstractUrlInterceptor() {}
- virtual ~QQmlAbstractUrlInterceptor() {}
+ QQmlAbstractUrlInterceptor() = default;
+ virtual ~QQmlAbstractUrlInterceptor() = default;
virtual QUrl intercept(const QUrl &path, DataType type) = 0;
};