diff options
author | Lars Knoll <[email protected]> | 2014-05-06 14:29:39 +0200 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2014-07-22 13:49:11 +0200 |
commit | 7722928d53da10f0fd39bc6524abed32dd78482b (patch) | |
tree | d367fd1d9a071fcc542a514e5190e976b8248f07 /src/qml | |
parent | 9744e8bd423d528165f5e78704c6e017852b8e9a (diff) |
Fix compiler warning
Change-Id: Ib1d83a3d14aa0ef3f62b8ec26ff5b8571cdb485c
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml')
-rw-r--r-- | src/qml/qml/qqmlxmlhttprequest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlxmlhttprequest.cpp b/src/qml/qml/qqmlxmlhttprequest.cpp index 019869fec1..734c05f922 100644 --- a/src/qml/qml/qqmlxmlhttprequest.cpp +++ b/src/qml/qml/qqmlxmlhttprequest.cpp @@ -239,6 +239,7 @@ public: NodeList(ExecutionEngine *engine, NodeImpl *data) : Object(engine) { + Q_UNUSED(__data); setVTable(staticVTable()); d()->d = data; |