summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger/standalone/engine.cpp
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-10-28 05:50:11 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-10-28 05:50:11 (GMT)
commit25f87fede4b5fd367242be80f314310e7be6e0a5 (patch)
treecd4f0411959eba5cb93f8fe425cbf2f2931c6790 /tools/qmldebugger/standalone/engine.cpp
parent37314eb9ff900780b8bb952c8fa87f278a634f3a (diff)
downloadQt-25f87fede4b5fd367242be80f314310e7be6e0a5.zip
Qt-25f87fede4b5fd367242be80f314310e7be6e0a5.tar.gz
Qt-25f87fede4b5fd367242be80f314310e7be6e0a5.tar.bz2
Show contents of list properties within the debugger (like the Creator
debugger). Also add Mode arg to ExpressionQueryWidget constructor.
Diffstat (limited to 'tools/qmldebugger/standalone/engine.cpp')
-rw-r--r--tools/qmldebugger/standalone/engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmldebugger/standalone/engine.cpp b/tools/qmldebugger/standalone/engine.cpp
index a1fd009..f1eada8 100644
--- a/tools/qmldebugger/standalone/engine.cpp
+++ b/tools/qmldebugger/standalone/engine.cpp
@@ -86,7 +86,7 @@ EnginePane::EnginePane(QmlDebugConnection *conn, QWidget *parent)
connect(m_watchTableView, SIGNAL(objectActivated(int)),
m_objTree, SLOT(setCurrentObject(int)));
- m_exprQueryWidget = new ExpressionQueryWidget(m_client);
+ m_exprQueryWidget = new ExpressionQueryWidget(ExpressionQueryWidget::SeparateEntryMode, m_client);
connect(m_objTree, SIGNAL(currentObjectChanged(QmlDebugObjectReference)),
m_exprQueryWidget, SLOT(setCurrentObject(QmlDebugObjectReference)));