Skip to content
Snippets Groups Projects
Commit 8605750b authored by Lasse Holmstedt's avatar Lasse Holmstedt
Browse files

Added a missing slot implementation for server address change

parent c79f25d5
No related branches found
No related tags found
No related merge requests found
......@@ -201,6 +201,12 @@ QString QmlProjectRunConfiguration::mainScript() const
return qmlTarget()->qmlProject()->projectDir().absoluteFilePath(m_scriptFile);
}
void QmlProjectRunConfiguration::onDebugServerAddressChanged()
{
if (QLineEdit *lineEdit = qobject_cast<QLineEdit*>(sender()))
m_debugServerAddress = lineEdit->text();
}
void QmlProjectRunConfiguration::setMainScript(const QString &scriptFile)
{
m_scriptFile = scriptFile;
......
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