]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
ws changes only
[lyx.git] / src / insets / insetcite.h
index 1b8d575a2d4fe6455a0681624f5fb13b929680bb..8547521d35ca920f2b5a61768eabb362c2f6f818 100644 (file)
@@ -5,9 +5,9 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Angus Leeming
- * \author Herbert Voss
+ * \author Herbert Voß
  *
- * 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;
+       std::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 &, LatexRunParams const &, 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 {
                ///
@@ -65,15 +66,15 @@ private:
                ///
                InsetCommandParams params;
                ///
-               string generated_label;
+               std::string generated_label;
                ///
-               string screen_label;
+               std::string screen_label;
        };
 
        /// This function does the donkey work of creating the pretty label
-       string const generateLabel(Buffer const *) const;
+       std::string const generateLabel(Buffer const &) const;
        ///
-       Cache::Style getStyle(Buffer const * buffer) const;
+       Cache::Style getStyle(Buffer const & buffer) const;
 
        ///
        mutable Cache cache;