git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27430 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-11-14 16:39:15 +00:00
parent e14e252d81
commit 44895b7c0d

View File

@ -444,8 +444,8 @@ void callNext()
// Bind our chain caller // Bind our chain caller
pro.second->connect(boost::bind(&ForkedCallQueue::callback, _1, _2)); pro.second->connect(boost::bind(&ForkedCallQueue::callback, _1, _2));
ForkedCall call; ForkedCall call;
// If we fail to fork the process, then emit the signal //If we fail to fork the process, then emit the signal
// to tell the outside world that it failed. //to tell the outside world that it failed.
if (call.startScript(pro.first, pro.second) > 0) if (call.startScript(pro.first, pro.second) > 0)
pro.second->operator()(0,1); pro.second->operator()(0,1);
} }