mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
* GuiDocument.cpp: before accessing the buffer() in paramsToDialog(), check
if we have a bufferview() (fixes bug 6499) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33310 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0ba70d9328
commit
4b7f1b3c39
@ -1823,6 +1823,8 @@ void GuiDocument::updateNumbering()
|
||||
|
||||
void GuiDocument::updateDefaultFormat()
|
||||
{
|
||||
if (!bufferview())
|
||||
return;
|
||||
// make a copy in order to consider unapplied changes
|
||||
Buffer * tmpbuf = const_cast<Buffer *>(&buffer());
|
||||
tmpbuf->params().useXetex = outputModule->xetexCB->isChecked();
|
||||
@ -2485,7 +2487,9 @@ void GuiDocument::paramsToDialog()
|
||||
}
|
||||
|
||||
// Master/Child
|
||||
std::vector<Buffer *> children = buffer().getChildren(false);
|
||||
std::vector<Buffer *> children;
|
||||
if (bufferview())
|
||||
children = buffer().getChildren(false);
|
||||
if (children.empty()) {
|
||||
masterChildModule->childrenTW->clear();
|
||||
includeonlys_.clear();
|
||||
@ -3100,6 +3104,8 @@ void GuiDocument::loadModuleInfo()
|
||||
|
||||
void GuiDocument::updateUnknownBranches()
|
||||
{
|
||||
if (!bufferview())
|
||||
return;
|
||||
list<docstring> used_branches;
|
||||
buffer().getUsedBranches(used_branches);
|
||||
list<docstring>::const_iterator it = used_branches.begin();
|
||||
|
Loading…
Reference in New Issue
Block a user