(Georg Baum): propogate BibTeX databases from the master document to

its children.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8133 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-11-24 20:48:21 +00:00
parent 44dd615836
commit 45ca1c4e02
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-11-24 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* lyxfunc.C (dispatch): propogate the bibtex databases from the
master file to any child files. Fixes bug 546.
2003-11-24 Alfredo Braunstein <abraunst@lyx.org> 2003-11-24 Alfredo Braunstein <abraunst@lyx.org>
* lyxfind.C (findNextChange): remove unneeded bv->text->init call * lyxfind.C (findNextChange): remove unneeded bv->text->init call

View File

@ -1278,10 +1278,15 @@ void LyXFunc::dispatch(FuncRequest const & func, bool verbose)
setMessage(N_("Opening child document ") + setMessage(N_("Opening child document ") +
MakeDisplayPath(filename) + "..."); MakeDisplayPath(filename) + "...");
view()->savePosition(0); view()->savePosition(0);
string const parentfilename = owner->buffer()->fileName();
if (bufferlist.exists(filename)) if (bufferlist.exists(filename))
view()->buffer(bufferlist.getBuffer(filename)); view()->buffer(bufferlist.getBuffer(filename));
else else
view()->loadLyXFile(filename); view()->loadLyXFile(filename);
// Set the parent name of the child document.
// This makes insertion of citations and references in the child work,
// when the target is in the parent or another child document.
owner->buffer()->setParentName(parentfilename);
break; break;
} }