Fix bug #8107. Just an oversight: We need to invalidate the file

cache, not just the BibInfo cache, when we create a new BibTeX
inset.
This commit is contained in:
Richard Heck 2012-04-01 18:21:22 -04:00
parent 612109bb6e
commit ec5735b144

View 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();
}