]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetref.h
index 41ac981dadebadf8119642a1006a785d71019ecd..3ec8215fa24c8ab6748ebdccfae60dfe68ab8a88 100644 (file)
@@ -42,8 +42,8 @@ public:
 
        ~InsetRef();
        ///
-       virtual Inset * clone() const {
-               return new InsetRef(*this);
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetRef(*this));
        }
        ///
        dispatch_result localDispatch(FuncRequest const & cmd);
@@ -52,7 +52,7 @@ public:
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::REF_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::REF_CODE; }
        ///
        bool display() const { return false; }
        ///