]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetlabel.h
index a9eccd361302e8e4a658d2ddd409e69bf2f05e50..a53a51b2a7ddbfd8a74b35d4aa1e6ceb1acbea4f 100644 (file)
@@ -20,27 +20,21 @@ public:
        ///
        InsetLabel(InsetCommandParams const &);
        ///
-       //InsetLabel(InsetCommandParams const &, bool same_id);
-       ///
        ~InsetLabel();
        ///
-       virtual Inset * clone(Buffer const &) const {
-               return new InsetLabel(params());
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetLabel(params()));
        }
        ///
-       //virtual Inset * clone(Buffer const &, bool same_id) const {
-       //      return new InsetLabel(params(), same_id);
-       //}
-       ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
        string const getScreenLabel(Buffer const *) const { return getContents(); }
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
        ///
-       std::vector<string> const getLabelList() const;
+       void getLabelList(std::vector<string> &) const;
        ///
        int latex(Buffer const *, std::ostream &,
                  LatexRunParams const &) const;