aboutsummaryrefslogtreecommitdiffstats
path: root/examples/localstorage/localstorage/hello.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/localstorage/localstorage/hello.qml')
-rw-r--r--examples/localstorage/localstorage/hello.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/localstorage/localstorage/hello.qml b/examples/localstorage/localstorage/hello.qml
index 3496b86bd9..d872379fe2 100644
--- a/examples/localstorage/localstorage/hello.qml
+++ b/examples/localstorage/localstorage/hello.qml
@@ -39,18 +39,18 @@
****************************************************************************/
//![0]
import QtQuick 2.0
-import QtQuick.LocalStorage 2.0 as LS
+import QtQuick.LocalStorage 2.0
Rectangle {
- color: "white"
width: 200
height: 100
-
+
Text {
text: "?"
anchors.horizontalCenter: parent.horizontalCenter
+
function findGreetings() {
- var db = LS.openDatabaseSync("QDeclarativeExampleDB", "1.0", "The Example QML SQL!", 1000000);
+ var db = LocalStorage.openDatabaseSync("QQmlExampleDB", "1.0", "The Example QML SQL!", 1000000);
db.transaction(
function(tx) {