summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/declarative/qml/qmlcompiler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/qml/qmlcompiler.cpp b/src/declarative/qml/qmlcompiler.cpp
index 023903d..431f9f6 100644
--- a/src/declarative/qml/qmlcompiler.cpp
+++ b/src/declarative/qml/qmlcompiler.cpp
@@ -817,7 +817,7 @@ void QmlCompiler::genObject(QmlParser::Object *obj)
if (!obj->metadata.isEmpty()) {
QmlInstruction meta;
meta.type = QmlInstruction::StoreMetaObject;
- meta.line = -1;
+ meta.line = 0;
meta.storeMeta.data = output->indexForByteArray(obj->metadata);
meta.storeMeta.aliasData = output->indexForByteArray(obj->synthdata);
meta.storeMeta.propertyCache = output->propertyCaches.count();
@@ -830,7 +830,7 @@ void QmlCompiler::genObject(QmlParser::Object *obj)
if (!obj->id.isEmpty()) {
QmlInstruction id;
id.type = QmlInstruction::SetId;
- id.line = -1;
+ id.line = 0;
id.setId.value = output->indexForString(obj->id);
id.setId.index = obj->idIndex;
output->bytecode << id;
@@ -840,7 +840,7 @@ void QmlCompiler::genObject(QmlParser::Object *obj)
for (int ii = 0; ii < obj->scriptBlocks.count(); ++ii) {
QmlInstruction script;
script.type = QmlInstruction::StoreScript;
- script.line = -1; // ###
+ script.line = 0; // ###
script.storeScript.fileName = output->indexForString(obj->scriptBlocksFile.at(ii));
script.storeScript.lineNumber = obj->scriptBlocksLineNumber.at(ii);
script.storeScript.value = output->indexForString(obj->scriptBlocks.at(ii));
@@ -1007,7 +1007,7 @@ void QmlCompiler::genComponent(QmlParser::Object *obj)
if (!obj->id.isEmpty()) {
QmlInstruction id;
id.type = QmlInstruction::SetId;
- id.line = -1;
+ id.line = 0;
id.setId.value = output->indexForString(obj->id);
id.setId.index = obj->idIndex;
output->bytecode << id;