summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlenginedebug_p.h
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-11-02 01:16:02 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-11-02 01:16:02 (GMT)
commit55e2858f2146d72bc43bde850dbec0cf7aa055e6 (patch)
treead72f4c53cc62bb285d56b0037c048b635115fce /src/declarative/qml/qmlenginedebug_p.h
parent37b5b477a044929bf69fe5f7251f2b5cbd892d93 (diff)
downloadQt-55e2858f2146d72bc43bde850dbec0cf7aa055e6.zip
Qt-55e2858f2146d72bc43bde850dbec0cf7aa055e6.tar.gz
Qt-55e2858f2146d72bc43bde850dbec0cf7aa055e6.tar.bz2
Make QmlBoundSignal children look like properties (instead of children)
in the debugger to reflect how signal properties are written in QML. This also changes the FETCH_OBJECT reply stream to send children data before property data.
Diffstat (limited to 'src/declarative/qml/qmlenginedebug_p.h')
-rw-r--r--src/declarative/qml/qmlenginedebug_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlenginedebug_p.h b/src/declarative/qml/qmlenginedebug_p.h
index a8572eb..7dbbbda 100644
--- a/src/declarative/qml/qmlenginedebug_p.h
+++ b/src/declarative/qml/qmlenginedebug_p.h
@@ -81,7 +81,7 @@ public:
};
struct QmlObjectProperty {
- enum Type { Unknown, Basic, Object, List };
+ enum Type { Unknown, Basic, Object, List, SignalProperty };
Type type;
QString name;
QVariant value;