Base: Remove Boost-based signals and switch to FastSignals.
This commit is contained in:
@@ -300,9 +300,9 @@ bool ViewProviderAssembly::setEdit(int mode)
|
||||
}
|
||||
|
||||
auto* assembly = getObject<AssemblyObject>();
|
||||
connectSolverUpdate = assembly->signalSolverUpdate.connect(
|
||||
boost::bind(&ViewProviderAssembly::UpdateSolverInformation, this)
|
||||
);
|
||||
connectSolverUpdate = assembly->signalSolverUpdate.connect([this] {
|
||||
UpdateSolverInformation();
|
||||
});
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user