Skip to content
Snippets Groups Projects
Commit f1dea465 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Use native path separators in customexecutableRC name

Reviewed-by: dt
parent ea366114
No related branches found
No related tags found
No related merge requests found
...@@ -208,7 +208,7 @@ void CustomExecutableConfigurationWidget::userEnvironmentChangesChanged() ...@@ -208,7 +208,7 @@ void CustomExecutableConfigurationWidget::userEnvironmentChangesChanged()
void CustomExecutableConfigurationWidget::executableEdited() void CustomExecutableConfigurationWidget::executableEdited()
{ {
m_ignoreChange = true; m_ignoreChange = true;
m_runConfiguration->setExecutable(m_executableChooser->path()); m_runConfiguration->setExecutable(QDir::fromNativeSeparators(m_executableChooser->path()));
m_ignoreChange = false; m_ignoreChange = false;
} }
void CustomExecutableConfigurationWidget::argumentsEdited(const QString &arguments) void CustomExecutableConfigurationWidget::argumentsEdited(const QString &arguments)
......
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