]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gnome/FormCopyright.h
Remove unneeded files, we have switched to use the libglade and there is no
[lyx.git] / src / frontends / gnome / FormCopyright.h
index 62d2efb8678d03c2296d842958fdab735b30185c..2e5489e21a81ac782e88d2c5ec0ac05dc37ac097 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "DialogBase.h"
 #include <gnome--/about.h>
-#include "boost/utility.hpp"
 
 class Dialogs;
 // same arguement as in Dialogs.h s/LyX/UI/
@@ -24,7 +23,7 @@ class LyXView;
 
 /** This class provides an GTK-- implementation of the FormCopyright Dialog.
  */
-class FormCopyright : public DialogBase, public noncopyable {
+class FormCopyright : public DialogBase {
 public:
        /// #FormCopyright x(LyXFunc ..., Dialogs ...);#
        FormCopyright(LyXView *, Dialogs *);
@@ -36,7 +35,7 @@ private:
        /// Hide the dialog.
        void hide();
        /// Not used but we've got to implement it.
-       void update(bool) {}
+       void update() {}
 
        /// Real GUI implementation.
         Gnome::About * dialog_;
@@ -50,9 +49,9 @@ private:
        */
        Dialogs * d_;
        /// Hide connection.
-       Connection h_;
+       SigC::Connection h_;
        /// Destroy connection.
-       Connection destroy_;
+       SigC::Connection destroy_;
 };
 
 #endif