diff options
-rw-r--r-- | offapi/com/sun/star/document/XShapeEventBroadcaster.idl | 6 | ||||
-rw-r--r-- | offapi/com/sun/star/i18n/XCalendar4.idl | 10 |
2 files changed, 14 insertions, 2 deletions
diff --git a/offapi/com/sun/star/document/XShapeEventBroadcaster.idl b/offapi/com/sun/star/document/XShapeEventBroadcaster.idl index 52e49ec8e96b..78a227eb993b 100644 --- a/offapi/com/sun/star/document/XShapeEventBroadcaster.idl +++ b/offapi/com/sun/star/document/XShapeEventBroadcaster.idl @@ -33,14 +33,16 @@ module com { module sun { module star { module document { interface XShapeEventBroadcaster : com::sun::star::document::XEventBroadcaster { /** registers the given listener - + @param Shape + the shape to be listened @param Listener listener which is interested on such events */ void addShapeEventListener( [in] com::sun::star::drawing::XShape Shape, [in] XShapeEventListener Listener ); /** unregisters the given listener - + @param Shape + the shape with the listener to be removed @param Listener listener which isn't interested on such events any longer */ diff --git a/offapi/com/sun/star/i18n/XCalendar4.idl b/offapi/com/sun/star/i18n/XCalendar4.idl index 94686b4a0031..7243cea65d76 100644 --- a/offapi/com/sun/star/i18n/XCalendar4.idl +++ b/offapi/com/sun/star/i18n/XCalendar4.idl @@ -51,6 +51,8 @@ interface XCalendar4 : com::sun::star::i18n::XCalendar3 /** Load the default calendar for the given locale with a given time zone. + @param rLocale + the locale for the calendar @param TimeZone If empty, the system's time zone is used. Else specified as "Region/City" name like "Europe/Berlin", @@ -62,6 +64,14 @@ interface XCalendar4 : com::sun::star::i18n::XCalendar3 /** Load a specific calendar for the given locale with a given time zone. + @param uniqueID + the uniqueID for the calendar. + As of 2019-09-25, we can specify ROC, dangi, buddhist, gengou, + gregorian, hanja, hanja_yoil, hijri, jewish. + If the calendar for the specified uniqueID is not found, + gregorian is used. + @param rLocale + the locale for the calendar @param TimeZone If empty, the system's time zone is used. Else specified as "Region/City" name like "Europe/Berlin", |