]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibtex.h
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insetbibtex.h
index df35d7901b3a8268403f823a4c06b25a4ed43cfe..e618f43b4a4be22486afd6bd2f1fb310134f37e2 100644 (file)
@@ -23,12 +23,12 @@ class Buffer;
 class InsetBibtex : public InsetCommand {
 public:
        ///
-       InsetBibtex(InsetCommandParams const &, bool same_id = false);
+       InsetBibtex(InsetCommandParams const &);
        ///
        ~InsetBibtex();
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetBibtex(params(), same_id);
+       Inset * clone() const {
+               return new InsetBibtex(params());
        }
        /// small wrapper for the time being
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
@@ -39,8 +39,8 @@ public:
        ///
        Inset::Code lyxCode() const { return Inset::BIBTEX_CODE; }
        ///
-       int latex(Buffer const *, std::ostream &, LatexRunParams const &,
-                 bool fragile, bool freespace) const;
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        void fillWithBibKeys(Buffer const *,
                std::vector<std::pair<string,string> > &) const;