Kaydet (Commit) 6b0a2d19 authored tarafından Caolán McNamara's avatar Caolán McNamara

ofz: allow std::out_of_range

Change-Id: I4d63214e3691e56816d66162660c243a7454e114
üst 3dd00bbe
......@@ -3340,7 +3340,15 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool SAL_CALL TestImportMathType(SvStream &rStre
{
OUString sText;
MathType aEquation(sText);
return aEquation.Parse(&rStream);
bool bRet = false;
try
{
bRet = aEquation.Parse(&rStream);
}
catch (const std::out_of_range&)
{
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment