Skip to content

Commit

Permalink
Reducing Doxygen start timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Jan 5, 2016
1 parent 94422d3 commit 46ffc8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doxygenplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,8 @@ void DoxygenPlugin::runDoxygen(const QStringList &arguments, QString workingDire
m_process->setWorkingDirectory(workingDirectory);

m_process->start(executable, allArgs);
m_process->waitForStarted();
if (!m_process->waitForStarted(5000))
qDebug("Could not start %s within 5 seconds", executable.toStdString().c_str());

return;
}
Expand Down

0 comments on commit 46ffc8d

Please sign in to comment.