X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderGraphic.cpp;h=a9342cce87565326f537bae97ee8789f4f607b45;hb=0a6ff99f28686066675848f3410f77c0947bc357;hp=fba651ccdcfdacb14f239432e6c7b56493d7772b;hpb=770aa71839511d358c90090c992f33f1a6319f82;p=lyx.git diff --git a/src/insets/RenderGraphic.cpp b/src/insets/RenderGraphic.cpp index fba651ccdc..a9342cce87 100644 --- a/src/insets/RenderGraphic.cpp +++ b/src/insets/RenderGraphic.cpp @@ -27,7 +27,7 @@ #include "support/filetools.h" #include "support/gettext.h" -#include +#include "support/bind.h" using namespace std; @@ -36,14 +36,14 @@ namespace lyx { RenderGraphic::RenderGraphic(Inset const * inset) { - loader_.connect(boost::bind(&Inset::updateFrontend, inset)); + loader_.connect(bind(&Inset::updateFrontend, inset)); } RenderGraphic::RenderGraphic(RenderGraphic const & other, Inset const * inset) : RenderBase(other), loader_(other.loader_), params_(other.params_) { - loader_.connect(boost::bind(&Inset::updateFrontend, inset)); + loader_.connect(bind(&Inset::updateFrontend, inset)); }