From: Georg Baum Date: Fri, 18 Nov 2005 08:57:56 +0000 (+0000) Subject: fix bibtex inset in included files X-Git-Tag: 1.6.10~13787 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8d8a65ce3c06b272b33176636e9792e8f68a3d77;p=features.git fix bibtex inset in included files git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10610 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index b995bbc110..2986041bb1 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2005-11-18 Georg Baum + + * insetbibtex.C (latex): copy .bib files to the master buffer temp dir + 2005-11-17 Jürgen Spitzmüller * insetbase.h: diff --git a/src/insets/insetbibtex.C b/src/insets/insetbibtex.C index 3168106360..3bc29d0566 100644 --- a/src/insets/insetbibtex.C +++ b/src/insets/insetbibtex.C @@ -164,7 +164,7 @@ int InsetBibtex::latex(Buffer const & buffer, ostream & os, database = FileName(database).mangledFilename(); string const out_file = MakeAbsPath(database + ".bib", - buffer.temppath()); + buffer.getMasterBuffer()->temppath()); bool const success = copy(in_file, out_file); if (!success) {