From 80b1e662777100a7dfd80176a2b528880a838167 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Sat, 13 Aug 2011 01:04:26 -0400 Subject: Added XPropertySet2 to allow disabling of change event notifications. Sometimes broadcasting changes to the property set on every new value insertion makes no sense especially during import. Turning that off also improves performance especially when inserting millions of property values. --- udkapi/com/sun/star/beans/XPropertySet2.idl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 udkapi/com/sun/star/beans/XPropertySet2.idl (limited to 'udkapi/com') diff --git a/udkapi/com/sun/star/beans/XPropertySet2.idl b/udkapi/com/sun/star/beans/XPropertySet2.idl new file mode 100644 index 000000000000..e4868bfac808 --- /dev/null +++ b/udkapi/com/sun/star/beans/XPropertySet2.idl @@ -0,0 +1,18 @@ + +#ifndef __com_sun_star_beans_XPropertySet2_idl__ +#define __com_sun_star_beans_XPropertySet2_idl__ + +#include + +module com { module sun { module star { module beans { + +interface XPropertySet2: com::sun::star::beans::XPropertySet +{ + void enableChangeListenerNotification( [in] boolean bEnable ); +}; + +//============================================================================= + +}; }; }; }; + +#endif -- cgit