Skip to content
Snippets Groups Projects
Commit 25b45081 authored by Daniel Molkentin's avatar Daniel Molkentin
Browse files

Fix signal signature: Specifying a custom QMLViewer location was broken

parent 4d11487a
No related branches found
No related tags found
No related merge requests found
...@@ -416,7 +416,7 @@ QWidget *QmlRunConfiguration::configurationWidget() ...@@ -416,7 +416,7 @@ QWidget *QmlRunConfiguration::configurationWidget()
Core::Utils::PathChooser *qmlViewer = new Core::Utils::PathChooser; Core::Utils::PathChooser *qmlViewer = new Core::Utils::PathChooser;
qmlViewer->setExpectedKind(Core::Utils::PathChooser::Command); qmlViewer->setExpectedKind(Core::Utils::PathChooser::Command);
qmlViewer->setPath(executable()); 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("QML Viewer"), qmlViewer);
form->addRow(tr("Main QML File:"), combo); form->addRow(tr("Main QML File:"), combo);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment