diff options
author | Marko Niemelä <marko.a.niemela@nokia.com> | 2012-01-16 13:06:28 +0200 |
---|---|---|
committer | Marko Niemelä <marko.a.niemela@nokia.com> | 2012-01-16 13:06:28 +0200 |
commit | 3657d0ab5ff2914b3d62afdec28663019eec6274 (patch) | |
tree | dfee23edb99e9680e840ef92a4244d924a5e7abd /src/effects | |
parent | 9f5afd555422a4168b05b6d78d799d4c15750dc6 (diff) | |
download | qtgraphicaleffects-3657d0ab5ff2914b3d62afdec28663019eec6274.tar.gz |
Renamed BlendEffect property backgroundSource -> source
Diffstat (limited to 'src/effects')
-rw-r--r-- | src/effects/Blend.qml | 4 |
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 { |