]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetbibitem.h
index 03a6406883a9d18ce3e8b0557eb7bbd105212df5..c2d5797ab6d6f846eddb27b8db98a6cf5e0f118e 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Alejandro Aguilar Sierra
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_BIBITEM_H
@@ -29,21 +29,21 @@ public:
        ///
        ~InsetBibitem();
        ///
-       Inset * clone() const;
+       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.
        */
-       void write(Buffer const *, std::ostream &) const;
+       void write(Buffer const &, std::ostream &) const;
        ///
-       void read(Buffer const *, LyXLex & lex);
+       void read(Buffer const &, LyXLex & lex);
        ///
-       virtual string const getScreenLabel(Buffer const *) const;
+       virtual string const getScreenLabel(Buffer const &) const;
        ///
        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; }
        ///
@@ -52,18 +52,11 @@ public:
        int getCounter() const { return counter; }
        ///
        string const getBibLabel() const;
-       ///
-       struct Holder {
-               InsetBibitem * inset;
-               BufferView * view;
-       };
 
 private:
        ///
        int counter;
        ///
-       Holder holder;
-       ///
        static int key_counter;
 };