summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/Final/SearchBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/contacts/Final/SearchBar.qml')
-rw-r--r--examples/declarative/tutorials/contacts/Final/SearchBar.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/declarative/tutorials/contacts/Final/SearchBar.qml b/examples/declarative/tutorials/contacts/Final/SearchBar.qml
deleted file mode 100644
index 3965e39..0000000
--- a/examples/declarative/tutorials/contacts/Final/SearchBar.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-<Rect id="searchBar"
- color="white">
- <properties>
- <Property name="text" value="{searchEdit.text}"/>
- </properties>
- <Image id="searchIcon"
- anchors.left="{parent.left}" anchors.leftMargin="5"
- anchors.verticalCenter="{parent.verticalCenter}"
- source="../shared/pics/search.png"/>
- <TextEdit id="searchEdit"
- anchors.left="{searchIcon.right}" anchors.right="{parent.right}"
- anchors.leftMargin="5" anchors.rightMargin="5"
- anchors.verticalCenter="{parent.verticalCenter}"
- readOnly="false"
- wrap="false"
- focus="true"/>
-</Rect>
-