mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
(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:
parent
44dd615836
commit
45ca1c4e02
@ -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
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user