]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetbibitem.h
index 1d0444057c9d1be2ab6b911f0b0ce4c0da17f311..d0db9df07187935f6f149d2dcdeb0ef572700f42 100644 (file)
@@ -29,8 +29,8 @@ public:
        ///
        ~InsetBibitem();
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
-       /// small wrapper for the time being
+       std::auto_ptr<InsetBase> clone() const;
+       ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        /** Currently \bibitem is used as a LyX2.x command,
            so we need this method.
@@ -41,33 +41,22 @@ public:
        ///
        virtual string const getScreenLabel(Buffer const *) const;
        ///
-       void edit(BufferView *, int x, int y, mouse_button::state button);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::BIBITEM_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::BIBITEM_CODE; }
        /// keep .lyx format compatible
        bool directWrite() const { return true; }
        ///
        void setCounter(int);
        ///
-       int  getCounter() const { return counter; }
+       int getCounter() const { return counter; }
        ///
        string const getBibLabel() const;
-       ///
-       struct Holder {
-               InsetBibitem * inset;
-               BufferView * view;
-       };
 
 private:
        ///
        int counter;
        ///
-       Holder holder;
-       ///
        static int key_counter;
 };