aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarko Niemelä <marko.a.niemela@nokia.com>2012-01-16 13:06:28 +0200
committerMarko Niemelä <marko.a.niemela@nokia.com>2012-01-16 13:06:28 +0200
commit3657d0ab5ff2914b3d62afdec28663019eec6274 (patch)
treedfee23edb99e9680e840ef92a4244d924a5e7abd /src
parent9f5afd555422a4168b05b6d78d799d4c15750dc6 (diff)
Renamed BlendEffect property backgroundSource -> source
Diffstat (limited to 'src')
-rw-r--r--src/effects/Blend.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects/Blend.qml b/src/effects/Blend.qml
index aaa8c71..3e1656d 100644
--- a/src/effects/Blend.qml
+++ b/src/effects/Blend.qml
@@ -43,14 +43,14 @@ import "internal"
Item {
id: rootItem
- property variant backgroundSource
+ property variant source
property variant foregroundSource
property string mode: "normal"
property bool cached: false
SourceProxy {
id: backgroundSourceProxy
- input: rootItem.backgroundSource
+ input: rootItem.source
}
SourceProxy {