mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
Fix bug #6929.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35564 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b8dfb6ad26
commit
3b87f59e42
@ -2480,7 +2480,9 @@ Buffer const * Buffer::parent() const
|
||||
|
||||
ListOfBuffers Buffer::allRelatives() const
|
||||
{
|
||||
return masterBuffer()->getDescendents();
|
||||
ListOfBuffers lb = masterBuffer()->getDescendents();
|
||||
lb.push_front(const_cast<Buffer *>(this));
|
||||
return lb;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user