]> git.lyx.org Git - features.git/blobdiff - src/insets/inseturl.h
patch from Angus
[features.git] / src / insets / inseturl.h
index e76161e78057e5e8e9222b186301574e74eae5c2..30a7b2c49bbd5342569f9b47817fb4b0672a7aec 100644 (file)
 #endif
 
 #include "insetcommand.h"
-#include <sigc++/signal_system.h>
 
 struct LaTeXFeatures;
 
-#ifdef SIGC_CXX_NAMESPACES
-using SigC::Signal0;
-#endif
-
 /** The url inset  
  */
 class InsetUrl : public InsetCommand {
@@ -31,8 +26,6 @@ public:
        ///
        explicit
        InsetUrl(InsetCommandParams const &);
-       ///
-       ~InsetUrl();
         ///
        Inset * Clone() const { return new InsetUrl(params()); }
        ///
@@ -44,8 +37,6 @@ public:
        ///
        EDITABLE Editable() const { return IS_EDITABLE; }
        ///
-       char const * EditMessage() const;
-       ///
        void Edit(BufferView *, int, int, unsigned int);
         ///
        bool display() const { return false; }
@@ -58,8 +49,6 @@ public:
        int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
        int DocBook(Buffer const *, std::ostream &) const;
-       ///
-       Signal0<void> hide;
 };
 
 #endif