]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderGraphic.cpp
More switches and whitespace fixes
[lyx.git] / src / insets / RenderGraphic.cpp
index fba651ccdcfdacb14f239432e6c7b56493d7772b..a9342cce87565326f537bae97ee8789f4f607b45 100644 (file)
@@ -27,7 +27,7 @@
 #include "support/filetools.h"
 #include "support/gettext.h"
 
-#include <boost/bind.hpp>
+#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));
 }