diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-05-01 22:34:56 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-05-03 23:21:26 +0200 |
commit | a78cb2ba6be7bdf4e45cefeb42b90f1c11a012ab (patch) | |
tree | 164bbc7e36ced6baa78b094e1b1f6d292a40d078 /offapi | |
parent | 089c8a6edb3425a18632b855e0ae74875f236dba (diff) |
remove unneeded @since tags from added pivot chart UNO interfaces
Change-Id: Iafeeedbc617d0824d8f384f8515faea35a3e419f
Reviewed-on: https://gerrit.libreoffice.org/37211
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi')
4 files changed, 1 insertions, 35 deletions
diff --git a/offapi/com/sun/star/chart2/data/XPivotTableDataProvider.idl b/offapi/com/sun/star/chart2/data/XPivotTableDataProvider.idl index 78f285ffaf89..0405f46372f3 100644 --- a/offapi/com/sun/star/chart2/data/XPivotTableDataProvider.idl +++ b/offapi/com/sun/star/chart2/data/XPivotTableDataProvider.idl @@ -23,38 +23,26 @@ module com { module sun { module star { module chart2 { module data { interface XPivotTableDataProvider : com::sun::star::uno::XInterface { /** names of column fields from the associated pivot table - * - * @since LibreOffice 5.4 */ sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getColumnFields(); /** names of row fields from the associated pivot table - * - * @since LibreOffice 5.4 */ sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getRowFields(); /** names of page fields from the associated pivot table - * - * @since LibreOffice 5.4 */ sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getPageFields(); /** names of data fields from the associated pivot table - * - * @since LibreOffice 5.4 */ sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getDataFields(); /** get the associated pivot table name - * - * @since LibreOffice 5.4 */ string getPivotTableName(); /** set the associated pivot table name - * - * @since LibreOffice 5.4 */ void setPivotTableName([in] string sPivotTableName); @@ -66,8 +54,6 @@ interface XPivotTableDataProvider : com::sun::star::uno::XInterface * * @param nIndex * index of the data series - * - * @since LibreOffice 5.4 */ XDataSequence createDataSequenceOfValuesByIndex([in] long nIndex); @@ -75,14 +61,10 @@ interface XPivotTableDataProvider : com::sun::star::uno::XInterface * * @param nIndex * index of the data series - * - * @since LibreOffice 5.4 */ XDataSequence createDataSequenceOfLabelsByIndex([in] long nIndex); /** creates a single data sequence of categories. - * - * @since LibreOffice 5.4 */ XDataSequence createDataSequenceOfCategories(); diff --git a/offapi/com/sun/star/table/XTablePivotChart.idl b/offapi/com/sun/star/table/XTablePivotChart.idl index b6c53d6fe97d..f43b81455e6d 100644 --- a/offapi/com/sun/star/table/XTablePivotChart.idl +++ b/offapi/com/sun/star/table/XTablePivotChart.idl @@ -14,7 +14,6 @@ module com { module sun { module star { module table { - /** provides access to the settings of a pivot chart object in a table or spreadsheet. @@ -23,9 +22,7 @@ module com { module sun { module star { module table { interface XTablePivotChart: com::sun::star::uno::XInterface { /** returns the pivot table name of the associated pivot table - - @since LibreOffice 5.4 - */ + */ string getPivotTableName(); }; diff --git a/offapi/com/sun/star/table/XTablePivotCharts.idl b/offapi/com/sun/star/table/XTablePivotCharts.idl index e16b74b0ceac..acdd1f59a03f 100644 --- a/offapi/com/sun/star/table/XTablePivotCharts.idl +++ b/offapi/com/sun/star/table/XTablePivotCharts.idl @@ -13,10 +13,8 @@ #include <com/sun/star/container/XNameAccess.idl> #include <com/sun/star/awt/Rectangle.idl> - module com { module sun { module star { module table { - /** provides methods to access pivot charts via name and to insert and remove pivot charts. @@ -24,7 +22,6 @@ module com { module sun { module star { module table { */ interface XTablePivotCharts: com::sun::star::container::XNameAccess { - /** creates a pivot chart and adds it to the collection. @param aName @@ -37,21 +34,16 @@ interface XTablePivotCharts: com::sun::star::container::XNameAccess @param aPivotTableName the name of the pivot table (data pilot) to associate the pivot chart with - - @since LibreOffice 5.4 */ void addNewByName( [in] string aName, [in] com::sun::star::awt::Rectangle aRect, [in] string aPivotTableName); - /** removes a pivot chart from the collection. @param aName is the name of the chart to remove. - - @since LibreOffice 5.4 */ void removeByName([in] string aName); }; diff --git a/offapi/com/sun/star/table/XTablePivotChartsSupplier.idl b/offapi/com/sun/star/table/XTablePivotChartsSupplier.idl index 44017411c7b7..edfd6bbb498d 100644 --- a/offapi/com/sun/star/table/XTablePivotChartsSupplier.idl +++ b/offapi/com/sun/star/table/XTablePivotChartsSupplier.idl @@ -16,7 +16,6 @@ module com { module sun { module star { module table { - /** provides a method to access a collection of pivot charts in a table or spreadsheet. @@ -26,14 +25,10 @@ interface XTablePivotChartsSupplier: com::sun::star::uno::XInterface { /** returns the collection of pivot charts. - - @since LibreOffice 5.4 */ com::sun::star::table::XTablePivotCharts getPivotCharts(); - }; - }; }; }; }; #endif |