Kaydet (Commit) 32e2c645 authored tarafından Michael Stahl's avatar Michael Stahl

FmGridControl: handle non-existing properties

Fix crash with unhandled exception requesting "Description".

Change-Id: I6b6cb61273fb042532ab63620729f4129239fe81
üst 6f36e707
......@@ -1908,7 +1908,14 @@ namespace
Reference<XPropertySet> xProp;
xIndex->getByIndex( _nPosition ) >>= xProp;
if ( xProp.is() )
xProp->getPropertyValue( _sPropName ) >>= sRetText;
{
try {
xProp->getPropertyValue( _sPropName ) >>= sRetText;
} catch (UnknownPropertyException const& e) {
SAL_WARN("svx.form",
"exception caught: " << e.Message);
}
}
}
}
return sRetText;
......
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