summaryrefslogtreecommitdiffstats
path: root/demos/qtdemo/qmlShell.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-07-19 05:26:37 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-07-19 05:26:37 (GMT)
commit75131b7a1bfeeb033ea5b8bf62d50cc3d82d757e (patch)
treef674bb8ff88068887605655bc61b2d5a78956c71 /demos/qtdemo/qmlShell.qml
parent8668f245b69da455ac7fe1d0a599226c1d6b9580 (diff)
downloadQt-75131b7a1bfeeb033ea5b8bf62d50cc3d82d757e.zip
Qt-75131b7a1bfeeb033ea5b8bf62d50cc3d82d757e.tar.gz
Qt-75131b7a1bfeeb033ea5b8bf62d50cc3d82d757e.tar.bz2
Remove the -use-blur option from qtdemo
It relied on the now missing pixmap property. Since it isn't used, it doesn't seem worth the effort to update it to use a declarative image provider instead.
Diffstat (limited to 'demos/qtdemo/qmlShell.qml')
-rw-r--r--demos/qtdemo/qmlShell.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/demos/qtdemo/qmlShell.qml b/demos/qtdemo/qmlShell.qml
index e9d8d56..b5fdf39 100644
--- a/demos/qtdemo/qmlShell.qml
+++ b/demos/qtdemo/qmlShell.qml
@@ -40,28 +40,13 @@
****************************************************************************/
import Qt 4.7
-import Effects 1.0
-/* Vars exposed from C++
- pixmap bgAppPixmap
- bool useBlur (to turn on, pass -use-blur on the cmd line. Off by default 'cause it's too slow)
-*/
Item {
id: main
//height and width set by program to fill window
//below properties are sometimes set from C++
property url qmlFile: ''
property bool show: false
- /*
- Image{
- id: bg
- opacity: 0
- anchors.fill: parent
- z: -1
- pixmap: bgAppPixmap
- effect: Blur { id: blurEffect; enabled: useBlur; blurRadius: 8;}
- }
- */
Item{ id:embeddedViewer
width: parent.width
@@ -114,13 +99,6 @@ Item {
anchors.fill:parent
}
- effect: DropShadow {
- enabled: useBlur;
- blurRadius: 9;
- color: "#88000000";
- xOffset:0
- yOffset:0
- }
}
Text{