]> 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 a154f07a24625571acaf2e5082d255024e2c865d..83c42e701a8ab623c22369077c798035957b3154 100644 (file)
@@ -1,21 +1,15 @@
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
+/**
+ * \file ControlConnections.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Angus Leeming
  *
- * \file ControlConnections.C
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "ControlConnections.h"
 
@@ -29,6 +23,7 @@
 
 #include <boost/bind.hpp>
 
+
 ControlConnectBase::ControlConnectBase(LyXView & lv, Dialogs & d)
        : lv_(lv), d_(d)
 {}
@@ -36,7 +31,7 @@ ControlConnectBase::ControlConnectBase(LyXView & lv, Dialogs & d)
 
 void ControlConnectBase::connect()
 {
-       r_ = d_.redrawGUI.
+       r_ = d_.redrawGUI().
                connect(boost::bind(&ControlConnectBase::redraw, this));
 }
 
@@ -130,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();
 }
 
@@ -141,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();
 }