]> git.lyx.org Git - features.git/commitdiff
Fix bug #8107. Just an oversight: We need to invalidate the file
authorRichard Heck <rgheck@lyx.org>
Sun, 1 Apr 2012 22:21:22 +0000 (18:21 -0400)
committerRichard Heck <rgheck@lyx.org>
Sun, 1 Apr 2012 22:22:37 +0000 (18:22 -0400)
cache, not just the BibInfo cache, when we create a new BibTeX
inset.

src/insets/InsetBibtex.cpp

index 62f9e0e4d53cefdd0af463e3b413c051f67655c2..146d67cc83cf8d67843e8fc6db2e7d264d8b3a18 100644 (file)
@@ -58,7 +58,7 @@ namespace os = support::os;
 InsetBibtex::InsetBibtex(Buffer * buf, InsetCommandParams const & p)
        : InsetCommand(buf, p)
 {
-       buffer().invalidateBibinfoCache();
+       buffer().invalidateBibfileCache();
        buffer().removeBiblioTempFiles();
 }