]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibtex.h
ws changes only
[lyx.git] / src / insets / insetbibtex.h
index c5ac7ba795e1e4f24d1b75d57573df527a7761da..30999d6a5e9402d5d89c7d33f5579cfa867f3b90 100644 (file)
@@ -33,26 +33,23 @@ public:
        /// small wrapper for the time being
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       string const getScreenLabel(Buffer const *) const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetOld::Code lyxCode() const { return InsetOld::BIBTEX_CODE; }
        ///
-       int latex(Buffer const *, std::ostream &,
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       void fillWithBibKeys(Buffer const * buffer,
-               std::vector<std::pair<string,string> > & keys) const;
+       void fillWithBibKeys(Buffer const & buffer,
+               std::vector<std::pair<std::string,std::string> > & keys) const;
        ///
-       std::vector<string> const getFiles(Buffer const &) const;
+       std::vector<std::string> const getFiles(Buffer const &) const;
        ///
-       bool addDatabase(string const &);
+       bool addDatabase(std::string const &);
        ///
-       bool delDatabase(string const &);
-private:
-       ///
-       mutable unsigned int center_indent_;
+       bool delDatabase(std::string const &);
 };
 
 #endif // INSET_BIBTEX_H