Fix signal signature: Specifying a custom QMLViewer location was broken

This commit is contained in:
Daniel Molkentin
2009-07-04 14:07:22 +02:00
parent 4d11487a86
commit 25b450815a

View File

@@ -416,7 +416,7 @@ QWidget *QmlRunConfiguration::configurationWidget()
Core::Utils::PathChooser *qmlViewer = new Core::Utils::PathChooser;
qmlViewer->setExpectedKind(Core::Utils::PathChooser::Command);
qmlViewer->setPath(executable());
connect(qmlViewer, SIGNAL(changed()), this, SLOT(onQmlViewerChanged()));
connect(qmlViewer, SIGNAL(changed(QString)), this, SLOT(onQmlViewerChanged()));
form->addRow(tr("QML Viewer"), qmlViewer);
form->addRow(tr("Main QML File:"), combo);