]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetcite.h
index 587ba52564884a91bb6300c7a1b17fa2cb491672..a38e133f62677d576394d4e759041a7f4cb55732 100644 (file)
@@ -7,7 +7,7 @@
  * \author Angus Leeming
  * \author Herbert Voss
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_CITE_H
 class InsetCitation : public InsetCommand {
 public:
        ///
-       InsetCitation(InsetCommandParams const &, bool same_id = false);
+       InsetCitation(InsetCommandParams const &);
        ///
        ~InsetCitation();
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetCitation(params(), same_id);
+       std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetCitation(params()));
        }
        ///
-       string const getScreenLabel(Buffer const *) const;
+       string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::CITE_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::CITE_CODE; }
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       int latex(Buffer const &, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        dispatch_result localDispatch(FuncRequest const & cmd);
        ///
@@ -46,7 +47,7 @@ public:
            is inserted. Tells us that the buffer is no longer being loaded
            and that the cache of BibTeX keys should be reloaded in the future.
        */
-       void setLoadingBuffer(Buffer const * buffer, bool state) const;
+       void setLoadingBuffer(Buffer const & buffer, bool state) const;
 private:
        struct Cache {
                ///
@@ -71,9 +72,9 @@ private:
        };
 
        /// This function does the donkey work of creating the pretty label
-       string const generateLabel(Buffer const *) const;
+       string const generateLabel(Buffer const &) const;
        ///
-       Cache::Style getStyle(Buffer const * buffer) const;
+       Cache::Style getStyle(Buffer const & buffer) const;
 
        ///
        mutable Cache cache;