]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetminipage.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetminipage.h
index dafcc0b1a677423afce2e8700994c52fc52b51f6..9ceca591557620b405b2b3df3d0ed3d660230b03 100644 (file)
@@ -66,18 +66,18 @@ public:
        ///
        void read(Buffer const * buf, LyXLex & lex);
        ///
-       InsetBase * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
-       Inset::Code lyxCode() const { return Inset::MINIPAGE_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::MINIPAGE_CODE; }
        ///
        int latex(Buffer const *, std::ostream &,
                  LatexRunParams const &) const;
        ///
        string const editMessage() const;
        ///
-       bool insetAllowed(Inset::Code) const;
+       bool insetAllowed(InsetOld::Code) const;
        ///
        bool needFullRow() const { return false; }
        /** returns true if, when outputing LaTeX, font changes should
@@ -110,7 +110,7 @@ public:
        ///
        virtual string const & name() const { return name_; }
        ///
-       virtual string const inset2string() const;
+       virtual string const inset2string(Buffer const &) const;
        ///
        static void string2params(string const &, InsetMinipage::Params &);
        ///