aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlcustomparser_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-02-19 12:54:02 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-02 11:46:09 +0100
commitfe5a3a024ac7e5f0cfa89d58c89ac705940bd5a4 (patch)
treecef9e2778d7bbfbe49466fce0b21bfb47caf60a4 /src/qml/qml/qqmlcustomparser_p.h
parentcf5c3d686d5bbb942b565ee5df6babb10ce22bc6 (diff)
[new compiler] Fix error location when id property is used in list model elements
Change-Id: Iec648d593d30117c512009dcc6ab0d50b8fc51af Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlcustomparser_p.h')
-rw-r--r--src/qml/qml/qqmlcustomparser_p.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlcustomparser_p.h b/src/qml/qml/qqmlcustomparser_p.h
index b406717410..d06a8c1551 100644
--- a/src/qml/qml/qqmlcustomparser_p.h
+++ b/src/qml/qml/qqmlcustomparser_p.h
@@ -149,8 +149,11 @@ protected:
void error(const QString& description);
void error(const QQmlCustomParserProperty&, const QString& description);
void error(const QQmlCustomParserNode&, const QString& description);
- void error(const QV4::CompiledData::Binding *binding, const QString& description);
- void error(const QV4::CompiledData::Object *object, const QString& description);
+ void error(const QV4::CompiledData::Binding *binding, const QString& description)
+ { error(binding->location, description); }
+ void error(const QV4::CompiledData::Object *object, const QString& description)
+ { error(object->location, description); }
+ void error(const QV4::CompiledData::Location &location, const QString& description);
int evaluateEnum(const QByteArray&, bool *ok) const;