aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/localstorage
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-10-20 15:14:41 +0200
committerLars Knoll <lars.knoll@qt.io>2017-11-07 09:00:26 +0000
commitc6c79644dc869259482a011f8b737f709af02fb2 (patch)
tree6f3c3a721f7bbd1b1a76189b537faffc4de24c1a /src/imports/localstorage
parent7287690a41ab762c0c4efe02632efeaf3e0187b4 (diff)
Rename JSCall to JSCallData
As, this is going to change in a simple stack based structure to keep pointers to the data to pass to calls. Change-Id: Ia9aa3f81ee3eeba36affd16aac7b2fe97d59aea9 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/imports/localstorage')
-rw-r--r--src/imports/localstorage/plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/localstorage/plugin.cpp b/src/imports/localstorage/plugin.cpp
index 3781a776a1..4de4a9520f 100644
--- a/src/imports/localstorage/plugin.cpp
+++ b/src/imports/localstorage/plugin.cpp
@@ -414,7 +414,7 @@ static ReturnedValue qmlsqldatabase_changeVersion(const QV4::BuiltinFunction *b,
ok = false;
db.transaction();
- JSCall jsCall(scope, callback, 1);
+ JSCallData jsCall(scope, callback, 1);
jsCall->thisObject = scope.engine->globalObject;
jsCall->args[0] = w;
@@ -464,7 +464,7 @@ static ReturnedValue qmlsqldatabase_transaction_shared(const QV4::BuiltinFunctio
db.transaction();
if (callback) {
- JSCall jsCall(scope, callback, 1);
+ JSCallData jsCall(scope, callback, 1);
jsCall->thisObject = scope.engine->globalObject;
jsCall->args[0] = w;
TransactionRollback rollbackOnException(&db, &w->d()->inTransaction);
@@ -763,7 +763,7 @@ void QQuickLocalStorage::openDatabaseSync(QQmlV4Function *args)
*db->d()->version = version;
if (created && dbcreationCallback) {
- JSCall jsCall(scope, dbcreationCallback, 1);
+ JSCallData jsCall(scope, dbcreationCallback, 1);
jsCall->thisObject = scope.engine->globalObject;
jsCall->args[0] = db;
jsCall.call();