]> git.lyx.org Git - features.git/blobdiff - src/TextClass.h
Rework default bibliography style UI
[features.git] / src / TextClass.h
index d082e10258142dce5582fe444846006f19d477c1..3f83216aaf44d6efc24c11b4ca78a4d85bb53c40 100644 (file)
@@ -330,7 +330,7 @@ protected:
        /// Citation macros
        std::map<CiteEngineType, std::map<std::string, std::string> > cite_macros_;
        /// The default BibTeX bibliography style file
-       std::string cite_default_biblio_style_;
+       std::map<std::string, std::string> cite_default_biblio_style_;
        /// Whether full author lists are supported
        bool cite_full_author_list_;
        /// The possible citation styles
@@ -487,7 +487,8 @@ public:
        ///
        std::vector<CitationStyle> const & citeStyles(CiteEngineType const &) const;
        ///
-       std::string const & defaultBiblioStyle() const { return cite_default_biblio_style_; }
+       std::map<std::string, std::string> const & defaultBiblioStyle() const
+       { return cite_default_biblio_style_; }
        ///
        bool const & fullAuthorList() const { return cite_full_author_list_; }
 protected: