]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insettoc.h
index 22edad4b776fbe4ebef398c521e426a0ed4792ee..d9e542cfef646f9f6d685faf03df92f553ad7243 100644 (file)
 class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC(InsetCommandParams const &, bool same_id = false);
+       InsetTOC(InsetCommandParams const &);
        ///
        ~InsetTOC();
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetTOC(params(), same_id);
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetTOC(params()));
        }
        ///
        dispatch_result localDispatch(FuncRequest const & cmd);
@@ -36,7 +36,7 @@ public:
        ///
        bool display() const { return true; }
        ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///