diff options
author | Olivier Goffart <[email protected]> | 2010-08-16 19:37:58 +0200 |
---|---|---|
committer | Olivier Goffart <[email protected]> | 2010-08-16 19:37:58 +0200 |
commit | e97879206d8e79497eea269759c150a56cb8b4f0 (patch) | |
tree | 55fa023599ed6b8f3f5b69d13f4d8e140de40c0d /src/tools/qml | |
parent | c691e5765800390a7476f3b769d7b686d73f303f (diff) |
qmlobserver: fix the Qt.quit() in -frameless
Diffstat (limited to 'src/tools/qml')
-rw-r--r-- | src/tools/qml/qmlobserver/qmlruntime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qml/qmlobserver/qmlruntime.cpp b/src/tools/qml/qmlobserver/qmlruntime.cpp index e37d9881e5f..6fef7bfd801 100644 --- a/src/tools/qml/qmlobserver/qmlruntime.cpp +++ b/src/tools/qml/qmlobserver/qmlruntime.cpp @@ -626,8 +626,8 @@ QDeclarativeViewer::QDeclarativeViewer(QWidget *parent, Qt::WindowFlags flags) QObject::connect(canvas, SIGNAL(inspectorContextPushed(QString)), m_crumblePathWidget, SLOT(pushElement(QString))); QObject::connect(canvas, SIGNAL(inspectorContextPopped()), m_crumblePathWidget, SLOT(popElement())); QObject::connect(m_crumblePathWidget, SIGNAL(elementClicked(int)), canvas, SLOT(setInspectorContext(int))); - QObject::connect(canvas->engine(), SIGNAL(quit()), QCoreApplication::instance (), SLOT(quit())); } + QObject::connect(canvas->engine(), SIGNAL(quit()), QCoreApplication::instance (), SLOT(quit())); QObject::connect(warningsWidget(), SIGNAL(opened()), this, SLOT(warningsWidgetOpened())); QObject::connect(warningsWidget(), SIGNAL(closed()), this, SLOT(warningsWidgetClosed())); |