]> git.lyx.org Git - lyx.git/blobdiff - src/insets/updatableinset.h
ws changes only
[lyx.git] / src / insets / updatableinset.h
index c0a735cd9c3018a08607e65f594c2920e23676e0..ba795e875989e2c31c318f9d656dedb8a989980e 100644 (file)
  */
 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; }
@@ -87,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); }
@@ -111,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: