summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2016-11-24 19:37:38 +0100
committerLiang Qi <liang.qi@qt.io>2016-11-24 19:37:38 +0100
commitba47b1f14e04ebc94190cfd46e372cc2fe464a8f (patch)
treed933dc3b8ab69ce408704647405376f382095a1f
parent61c2a76cf00b6ac4a6224e717e60c24ec18a572d (diff)
parentc98c779c6474af2f7c347957c6eac4f5e217b988 (diff)
Merge remote-tracking branch 'origin/5.6' into 5.75.7
-rw-r--r--src/webview/qquickviewcontroller.cpp4
-rw-r--r--sync.profile12
2 files changed, 2 insertions, 14 deletions
diff --git a/src/webview/qquickviewcontroller.cpp b/src/webview/qquickviewcontroller.cpp
index ab9e254..56b169b 100644
--- a/src/webview/qquickviewcontroller.cpp
+++ b/src/webview/qquickviewcontroller.cpp
@@ -109,9 +109,9 @@ void QQuickViewChangeListener::itemChildRemoved(QQuickItem *item, QQuickItem *ch
removeAncestorListeners(item, changeMask);
}
-void QQuickViewChangeListener::itemParentChanged(QQuickItem * /*item*/, QQuickItem *newParent)
+void QQuickViewChangeListener::itemParentChanged(QQuickItem *item, QQuickItem *newParent)
{
- removeAncestorListeners(m_item->parentItem(), changeMask);
+ removeAncestorListeners(item->parentItem(), changeMask);
// Adds this as a listener for newParent and its ancestors.
addAncestorListeners(newParent, changeMask);
}
diff --git a/sync.profile b/sync.profile
index d35d109..91bb6a1 100644
--- a/sync.profile
+++ b/sync.profile
@@ -3,15 +3,3 @@
);
%moduleheaders = ( # restrict the module headers to those found in relative path
);
-# Module dependencies.
-# Every module that is required to build this module should have one entry.
-# Each of the module version specifiers can take one of the following values:
-# - A specific Git revision.
-# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
-# - an empty string to use the same branch under test (dependencies will become "refs/heads/master" if we are in the master branch)
-#
-%dependencies = (
- "qtbase" => "",
- "qtdeclarative" => "",
- "qtwebengine" => "",
-);