]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBibtex.cpp
Add clarifying comment
[lyx.git] / src / frontends / qt4 / GuiBibtex.cpp
index 1be20bc4b1fd441e7a344bd23f16e43fead0a533..b49d663b8aa2ffb0e59f6935631dc32f38afc14a 100644 (file)
@@ -110,6 +110,10 @@ GuiBibtex::GuiBibtex(GuiView & lv)
        connect(add_->closePB, SIGNAL(clicked()),
                add_, SLOT(reject()));
 
+       add_->bibLW->setToolTip(formatToolTip(qt_("This list consists of all databases that are indexed by LaTeX and thus are found without a file path. "
+                                   "This is usually everything in the bib/ subdirectory of LaTeX's texmf tree. "
+                                   "If you want to reuse your own database, this is the place you should store it.")));
+
        bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
        bc().setOK(okPB);
        bc().setCancel(closePB);
@@ -512,7 +516,7 @@ void GuiBibtex::rescanBibStyles() const
 
 bool GuiBibtex::usingBibtopic() const
 {
-       return buffer().params().use_bibtopic;
+       return buffer().params().useBibtopic();
 }
 
 
@@ -524,7 +528,7 @@ bool GuiBibtex::bibtotoc() const
 
 bool GuiBibtex::usingBiblatex() const
 {
-       return buffer().params().useBiblatex();
+       return buffer().masterBuffer()->params().useBiblatex();
 }