]> git.lyx.org Git - lyx.git/blobdiff - src/insets/updatableinset.h
ws changes only
[lyx.git] / src / insets / updatableinset.h
index b8573ba4046ca82f7bf5efa8b86b5a9058b1ff6d..ba795e875989e2c31c318f9d656dedb8a989980e 100644 (file)
@@ -9,7 +9,7 @@
  * \author Lars Gullik Bjønnes
  * \author Matthias Ettrich
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef UPDATABLEINSET_H
@@ -22,6 +22,8 @@
 
 #include "inset.h"
 
+#include "support/types.h"
+
 
 /** Extracted from Matthias notes:
  *
  */
 class UpdatableInset : public InsetOld {
 public:
-       ///
-       UpdatableInset();
-       ///
-       UpdatableInset(UpdatableInset const & in);
-
        /// check if the font of the char we want inserting is correct
        /// and modify it if it is not.
        virtual bool checkInsertChar(LyXFont &) { return true; }
@@ -85,7 +82,7 @@ public:
                                        bool /*lr*/ = false)
                { return false; }
        ///  An updatable inset could handle lyx editing commands
-       virtual RESULT localDispatch(FuncRequest const & cmd);
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
        // We need this method to not clobber the real method in Inset
        int scroll(bool recursive = true) const
                { return InsetOld::scroll(recursive); }
@@ -109,10 +106,10 @@ public:
        ///
        // needed for search/replace functionality
        ///
-       virtual bool searchForward(BufferView *, string const &,
+       virtual bool searchForward(BufferView *, std::string const &,
                                   bool = true, bool = false);
        ///
-       virtual bool searchBackward(BufferView *, string const &,
+       virtual bool searchBackward(BufferView *, std::string const &,
                                    bool = true, bool = false);
 
 protected: