diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-10 12:03:05 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-10 12:03:42 -0500 |
commit | d1846cd8d4530d620b996f27a0ea7ab0c91639b5 (patch) | |
tree | 264e27f393d6191fbc107edca66146ccc7cc1b96 | |
parent | 76a0b3170664b19c3eb66edc8fccb04dc5485387 (diff) |
fdo#72005: Add @since tag to the API documentation.
Change-Id: Ib59648f1427e3d6f662f7c4eddea66ad03817dbb
-rw-r--r-- | offapi/com/sun/star/drawing/XShapes2.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/offapi/com/sun/star/drawing/XShapes2.idl b/offapi/com/sun/star/drawing/XShapes2.idl index c63981cdcf64..80b993644cbc 100644 --- a/offapi/com/sun/star/drawing/XShapes2.idl +++ b/offapi/com/sun/star/drawing/XShapes2.idl @@ -14,12 +14,19 @@ module com { module sun { module star { module drawing { +/** + * Extend XShapes to allow insertion of shapes at different positions. + * + * @since LibreOffice 4.2 + */ interface XShapes2 : com::sun::star::drawing::XShapes { /** * Insert a new shape to the top of the stack. * * @param xShape shape to be inserted. + * + * @since LibreOffice 4.2 */ void addTop( [in] com::sun::star::drawing::XShape xShape ); @@ -27,6 +34,8 @@ interface XShapes2 : com::sun::star::drawing::XShapes * Insert a new shape to the bottom of the stack. * * @param xShape shape to be inserted. + * + * @since LibreOffice 4.2 */ void addBottom( [in] com::sun::star::drawing::XShape xShape ); }; |