X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FForkedCalls.cpp;h=4827947d370a2f22abf5848914724dcade3ba37c;hb=bf56e2c8e1afa857cd5e313c19948040e41b8227;hp=fc2b599484ef89ee8d3dff76991863583ad54ff2;hpb=2047ea5eb436d98d485bed672ed218f9bd708ce6;p=lyx.git diff --git a/src/support/ForkedCalls.cpp b/src/support/ForkedCalls.cpp index fc2b599484..4827947d37 100644 --- a/src/support/ForkedCalls.cpp +++ b/src/support/ForkedCalls.cpp @@ -47,7 +47,6 @@ using namespace std; - namespace lyx { namespace support { @@ -475,7 +474,7 @@ void callNext() Process pro = callQueue_.front(); callQueue_.pop(); // Bind our chain caller - pro.second->connect(lyx::bind(&ForkedCallQueue::callback, _1, _2)); + pro.second->connect(callback); ForkedCall call; //If we fail to fork the process, then emit the signal //to tell the outside world that it failed. @@ -553,7 +552,7 @@ string const getChildErrorMessage() namespace ForkedCallsController { -typedef std::shared_ptr ForkedProcessPtr; +typedef shared_ptr ForkedProcessPtr; typedef list ListType; typedef ListType::iterator iterator;