]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gnome/FormPrint.h
Remove unneeded files, we have switched to use the libglade and there is no
[lyx.git] / src / frontends / gnome / FormPrint.h
index 3c82c1150acf1de873416e874b1348e66f6eea70..ab90e572e24354dd5c5f26438bc06f6c5299d5f7 100644 (file)
@@ -15,7 +15,6 @@
 #define FORMPRINT_H
 
 #include "DialogBase.h"
-#include "boost/utility.hpp"
 
 #include <gtk--/widget.h>
 #include <gtk--/radiobutton.h>
 class LyXView;
 class Dialogs;
 
-#ifdef SIGC_CXX_NAMESPACES
-using SigC::Connection;
-#endif
-
 /** This class provides an Gnome implementation of the FormPrint Dialog.
     The print dialog allows users to print their documents.
  */
-class FormPrint : public DialogBase, public noncopyable {
+class FormPrint : public DialogBase {
 public:
   /**@name Constructors and Destructors */
   //@{
@@ -58,7 +53,8 @@ private:
   /// Hide the dialog.
   void hide();
   /// Update the dialog.
-  void update(bool = false);
+  void update() { }
+  void updateSlot(bool = false);
   /// Free memory
   void free();
   //@}
@@ -99,9 +95,9 @@ private:
   LyXView * lv_;
   Dialogs * d_;
   /// Update connection.
-  Connection u_;
+  SigC::Connection u_;
   /// Hide connection.
-  Connection h_;
+  SigC::Connection h_;
   //@}
 };