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:
Kornel Benko 2010-10-26 19:38:45 +00:00
parent afc87eb625
commit 48a8d24328

View File

@ -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;