Kaydet (Commit) 5abc99f2 authored tarafından Julien Nabet's avatar Julien Nabet

Show errors

Change-Id: Iff3b8e523f5d326586115c4ff61835c15b8b7f01
üst 571f49ff
......@@ -118,10 +118,10 @@ bool PropertySet::implGetPropertyValue( Any& orValue, const OUString& rPropName
orValue = mxPropSet->getPropertyValue( rPropName );
return true;
}
catch( Exception& )
catch( Exception& e)
{
SAL_WARN( "oox", "PropertySet::implGetPropertyValue - cannot get property \"" <<
rPropName << '"' );
rPropName << "\" Error: " << e.Message);
}
return false;
}
......@@ -133,10 +133,10 @@ bool PropertySet::implSetPropertyValue( const OUString& rPropName, const Any& rV
mxPropSet->setPropertyValue( rPropName, rValue );
return true;
}
catch( Exception& )
catch( Exception& e)
{
SAL_WARN( "oox", "PropertySet::implSetPropertyValue - cannot set property \"" <<
rPropName << '"' );
rPropName << "\" Error: " << e.Message);
}
return false;
}
......
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