calc55: #i112084# All charts in a Calc document are loaded when saving the document

This commit is contained in:
Thomas Benisch 2010-06-04 20:08:33 +02:00
parent 5c92fa80fc
commit c1032dd013

View file

@ -836,7 +836,6 @@ XMultiPropertySet
* @return The value of the property. * @return The value of the property.
*/ */
protected Object getPropertyValue(Property property) protected Object getPropertyValue(Property property)
throws com.sun.star.lang.WrappedTargetException
{ {
Object ret= null; Object ret= null;
try try
@ -853,9 +852,13 @@ XMultiPropertySet
ret= propField.get(this); ret= propField.get(this);
} }
} }
catch(java.lang.Exception e) catch(java.lang.NoSuchFieldException e)
{ {
throw new WrappedTargetException("PropertySet.setPropertyValue_NoBroadcast", this, e); throw new java.lang.RuntimeException(e);
}
catch(java.lang.IllegalAccessException e)
{
throw new java.lang.RuntimeException(e);
} }
return ret; return ret;
} }
@ -1001,7 +1004,7 @@ XMultiPropertySet
{ {
value= getPropertyValue(prop); value= getPropertyValue(prop);
} }
catch(WrappedTargetException e) catch(Exception e)
{ {
continue; continue;
} }