mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Whoops on the last commit. This is the right patch.
This commit is contained in:
parent
c498adf4db
commit
efd1af6789
@ -3039,9 +3039,9 @@ void GuiDocument::paramsToDialog()
|
||||
biblioChanged_ = false;
|
||||
|
||||
// indices
|
||||
// We may be called when there is no BufferView and so no Buffer,
|
||||
// e.g., when the last view has just been closed.
|
||||
bool const isReadOnly = buffer() ? buffer().isReadonly() : false;
|
||||
// We may be called when there is no Buffer, e.g., when
|
||||
// the last view has just been closed.
|
||||
bool const isReadOnly = isBufferAvailable() ? buffer().isReadonly() : false;
|
||||
indicesModule->update(bp_, isReadOnly);
|
||||
|
||||
// language & quotes
|
||||
|
Loading…
Reference in New Issue
Block a user