mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Make it compilable, missing parentheses
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35859 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
afc87eb625
commit
48a8d24328
@ -2761,10 +2761,11 @@ void Buffer::Impl::updateMacros(DocIterator & it, DocIterator & scope)
|
||||
}
|
||||
|
||||
InsetMath * im = iit->inset->asInsetMath();
|
||||
if (doing_export && im)
|
||||
if (doing_export && im) {
|
||||
InsetMathHull * hull = im->asHullInset();
|
||||
if (hull)
|
||||
hull->recordLocation(it);
|
||||
}
|
||||
|
||||
if (iit->inset->lyxCode() != MATHMACRO_CODE)
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user