From a16f3c660b3a28e011b38bd63de36e801821e56c Mon Sep 17 00:00:00 2001 From: Fawzi Mohamed Date: Wed, 24 Apr 2013 10:46:22 +0200 Subject: qtdeclarative: update .qmltypes, and use -notrelocatable option this should fix some bugs in the code support due to incorrec/outdated meta info Change-Id: I90925daa5376ebdfb9a6f9d73103893065c15d64 Reviewed-by: Thomas Hartmann --- src/imports/localstorage/plugins.qmltypes | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/imports/localstorage') diff --git a/src/imports/localstorage/plugins.qmltypes b/src/imports/localstorage/plugins.qmltypes index 75b83c762d..ec60a142d4 100644 --- a/src/imports/localstorage/plugins.qmltypes +++ b/src/imports/localstorage/plugins.qmltypes @@ -3,13 +3,14 @@ import QtQuick.tooling 1.1 // This file describes the plugin-supplied types contained in the library. // It is used for QML tooling purposes only. // -// This file was auto-generated with the command 'qmlplugindump QtQuick.LocalStorage 2.0'. +// This file was auto-generated with the command 'qmlplugindump -notrelocatable QtQuick.LocalStorage 2.0'. Module { Component { name: "QQuickLocalStorage" prototype: "QObject" - exports: ["LocalStorage 2.0"] + exports: ["QtQuick.LocalStorage/LocalStorage 2.0"] + exportMetaObjectRevisions: [0] Method { name: "openDatabaseSync" Parameter { name: "args"; type: "QQmlV8Function"; isPointer: true } -- cgit v1.2.3 From 0d4512c8bdfd7e1131c8633e8ad0d37c2dbc4ab3 Mon Sep 17 00:00:00 2001 From: Sze Howe Koh Date: Sun, 5 May 2013 08:08:41 +0800 Subject: Doc: Fix some broken snippet paths Change-Id: Ib79bfbea402b86e26a503de47383522317ca906b Reviewed-by: Jerome Pasion --- src/imports/localstorage/plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/imports/localstorage') diff --git a/src/imports/localstorage/plugin.cpp b/src/imports/localstorage/plugin.cpp index d40433e96b..4877c4cfca 100644 --- a/src/imports/localstorage/plugin.cpp +++ b/src/imports/localstorage/plugin.cpp @@ -493,7 +493,7 @@ Database connections are automatically closed during Javascript garbage collecti The API can be used from JavaScript functions in your QML: -\snippet quick/localstorage/localstorage/hello.qml 0 +\snippet localstorage/localstorage/hello.qml 0 The API conforms to the Synchronous API of the HTML5 Web Database API, \link http://www.w3.org/TR/2009/WD-webdatabase-20091029/ W3C Working Draft 29 October 2009\endlink. -- cgit v1.2.3