]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.h
Use unsigned values for enum
[lyx.git] / src / Buffer.h
index a6cbd572d364d907e44e5be4ce5f998a4df60df5..48ed0e7c36be7779af78124402ec07fd122e31d9 100644 (file)
@@ -287,6 +287,8 @@ private:
 public:
        /// Fill in the ErrorList with the TeXErrors
        void bufferErrors(TeXErrors const &, ErrorList &) const;
+       /// Fill in the Citation/Reference ErrorList from the TeXErrors
+       void bufferRefs(TeXErrors const &, ErrorList &) const;
 
        enum OutputWhat {
                FullSource,
@@ -302,8 +304,8 @@ public:
                           OutputParams const &,
                           OutputWhat output = FullSource) const;
        /** Export the buffer to LaTeX.
-           If \p os is a file stream, and params().inputenc is "auto" or
-           "default", and the buffer contains text in different languages
+           If \p os is a file stream, and params().inputenc is "auto-legacy" or
+           "auto-legacy-plain", and the buffer contains text in different languages
            with more than one encoding, then this method will change the
            encoding associated to \p os. Therefore you must not call this
            method with a string stream if the output is supposed to go to a
@@ -413,9 +415,9 @@ public:
                                        std::string const &, bool nice) const;
 
        /** Returns a vector of bibliography (*.bib) file paths suitable for the
-        *  output in the respective BibTeX/Biblatex macro
+        *  output in the respective BibTeX/Biblatex macro and potential individual encoding
         */
-       std::vector<docstring> const prepareBibFilePaths(OutputParams const &,
+       std::vector<std::pair<docstring, std::string>> const prepareBibFilePaths(OutputParams const &,
                                    const docstring_list & bibfilelist,
                                    bool const extension = true) const;
 
@@ -713,7 +715,8 @@ public:
        void setInsetLabel(docstring const & label, InsetLabel const * il,
                           bool const active);
        /// \return the InsetLabel associated with this \p label string
-       /// If \p active is true we only return active labels.
+       /// If \p active is true we only return active labels
+       /// (see @ref activeLabel)
        InsetLabel const * insetLabel(docstring const & label,
                                      bool const active = false) const;
        /// \return true if this \param label is an active label.