mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
Fix missing signal emission following revision 18693.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18730 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c20baf584c
commit
8865ede57d
@ -705,7 +705,9 @@ void expandToc(Menu & tomenu, Buffer const * buf)
|
||||
return;
|
||||
}
|
||||
|
||||
const_cast<Buffer*>(buf)->tocBackend().update();
|
||||
Buffer* cbuf = const_cast<Buffer*>(buf);
|
||||
cbuf->tocBackend().update();
|
||||
cbuf->structureChanged();
|
||||
|
||||
// Add an entry for the master doc if this is a child doc
|
||||
Buffer const * const master = buf->getMasterBuffer();
|
||||
|
Loading…
Reference in New Issue
Block a user