summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlparser_p.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-11 23:05:45 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-11 23:05:45 (GMT)
commit38c3d2d086d0e7fa07daf0d172d27747d6f95519 (patch)
tree24b0e1d7831476bf8f18858c8964e1bb1e697509 /src/declarative/qml/qmlparser_p.h
parent5e690831db11d5d84dc98589da01bf953f4fe06e (diff)
parent70cd26cfaf24455ceea6cb698a88be694728030c (diff)
downloadQt-38c3d2d086d0e7fa07daf0d172d27747d6f95519.zip
Qt-38c3d2d086d0e7fa07daf0d172d27747d6f95519.tar.gz
Qt-38c3d2d086d0e7fa07daf0d172d27747d6f95519.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative/qml/qmlparser_p.h')
-rw-r--r--src/declarative/qml/qmlparser_p.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlparser_p.h b/src/declarative/qml/qmlparser_p.h
index d67690b..f25a76b 100644
--- a/src/declarative/qml/qmlparser_p.h
+++ b/src/declarative/qml/qmlparser_p.h
@@ -74,10 +74,18 @@ namespace QmlParser
int column;
};
+ struct LocationRange
+ {
+ LocationRange() : offset(0), length(0) {}
+ quint32 offset;
+ quint32 length;
+ };
+
struct LocationSpan
{
Location start;
Location end;
+ LocationRange range;
};
class Property;