]> git.lyx.org Git - lyx.git/commitdiff
GuiBibtex: Use appropriate title when using Biblatex
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 10 Sep 2017 08:57:48 +0000 (10:57 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 10 Sep 2017 08:57:48 +0000 (10:57 +0200)
src/frontends/qt4/GuiBibtex.cpp

index 45ad6ca1c68f67aa93edbff18c3fb904a945ee07..04f23d554d24f2949fd8764c437ec00df67373ec 100644 (file)
@@ -304,6 +304,11 @@ void GuiBibtex::updateContents()
        bool bibtopic = usingBibtopic();
        bool biblatex = usingBiblatex();
 
+       if (biblatex)
+               setTitle(qt_("Biblatex Bibliography"));
+       else
+               setTitle(qt_("BibTeX Bibliography"));
+
        databaseLW->clear();
 
        docstring bibs = params_["bibfiles"];