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

Fix customexecutable RC

 * CustomExecutableRunConfiguration is supposed to ask the user
   for input if asked to run when unconfigured. It did no longer do that.

 * This was discovered and fixed by dt.
parent a2c83940
No related branches found
No related tags found
No related merge requests found
......@@ -328,7 +328,7 @@ QString CustomExecutableRunConfiguration::userName() const
QString CustomExecutableRunConfiguration::executable() const
{
QString exec;
if (QDir::isRelativePath(m_executable)) {
if (!m_executable.isEmpty() && QDir::isRelativePath(m_executable)) {
Environment env = activeBuildConfiguration()->environment();
exec = env.searchInPath(m_executable);
if (exec.isEmpty())
......@@ -337,7 +337,7 @@ QString CustomExecutableRunConfiguration::executable() const
exec = m_executable;
}
if (!QFileInfo(exec).exists()) {
if (m_executable.isEmpty() || !QFileInfo(exec).exists()) {
// Oh the executable doesn't exists, ask the user.
QWidget *confWidget = const_cast<CustomExecutableRunConfiguration *>(this)->configurationWidget();
QDialog dialog(Core::ICore::instance()->mainWindow());
......
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