]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
some reindentation, revert workarea xpos++, constify, remove all traces of LyXParagra...
[lyx.git] / src / insets / insetcite.h
index 7e7676400b216908a7584e7d81350b384ad531c1..3f896677f8e485f720c99863621ba3ac6a627b1f 100644 (file)
 class InsetCitation : public InsetCommand {
 public:
        ///
-       explicit
        InsetCitation(InsetCommandParams const &);
        ///
-       Inset * Clone() const { return new InsetCitation(params()); }
+       Inset * Clone(Buffer const &) const {
+               return new InsetCitation(params());
+       }
        ///
-       string getScreenLabel() const;
+       string const getScreenLabel() const;
        ///
        EDITABLE Editable() const { return IS_EDITABLE; }
+       ///
+       Inset::Code LyxCode() const { return Inset::CITE_CODE; }
         ///
        void Edit(BufferView *, int, int, unsigned int);
 };