]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlConnections.C
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlConnections.C
index 4bfbded601b87b674f5679cf81744b5a6885e646..83c42e701a8ab623c22369077c798035957b3154 100644 (file)
@@ -10,9 +10,6 @@
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "ControlConnections.h"
 
@@ -26,6 +23,7 @@
 
 #include <boost/bind.hpp>
 
+
 ControlConnectBase::ControlConnectBase(LyXView & lv, Dialogs & d)
        : lv_(lv), d_(d)
 {}
@@ -127,7 +125,7 @@ ControlConnectBI::ControlConnectBI(LyXView & lv, Dialogs & d)
 
 void ControlConnectBI::connect()
 {
-       h_ = d_.hideAll.connect(boost::bind(&ControlConnectBI::hide, this));
+       h_ = d_.hideAllSignal.connect(boost::bind(&ControlConnectBI::hide, this));
        ControlConnectBase::connect();
 }
 
@@ -138,9 +136,9 @@ ControlConnectBD::ControlConnectBD(LyXView & lv, Dialogs & d)
 
 void ControlConnectBD::connect()
 {
-       u_ = d_.updateBufferDependent.
+       u_ = d_.updateBufferDependentSignal.
                connect(boost::bind(&ControlConnectBD::updateSlot, this, _1));
-       h_ = d_.hideBufferDependent.
+       h_ = d_.hideBufferDependentSignal.
                connect(boost::bind(&ControlConnectBD::hide, this));
        ControlConnectBase::connect();
 }