[Libreoffice-commits] core.git: offapi/com
Tomaž Vajngerl
tomaz.vajngerl at collabora.co.uk
Wed May 3 21:22:05 UTC 2017
offapi/com/sun/star/chart2/data/XPivotTableDataProvider.idl | 18 ------------
offapi/com/sun/star/table/XTablePivotChart.idl | 5 ---
offapi/com/sun/star/table/XTablePivotCharts.idl | 8 -----
offapi/com/sun/star/table/XTablePivotChartsSupplier.idl | 5 ---
4 files changed, 1 insertion(+), 35 deletions(-)
New commits:
commit a78cb2ba6be7bdf4e45cefeb42b90f1c11a012ab
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date: Mon May 1 22:34:56 2017 +0200
remove unneeded @since tags from added pivot chart UNO interfaces
Change-Id: Iafeeedbc617d0824d8f384f8515faea35a3e419f
Reviewed-on: https://gerrit.libreoffice.org/37211
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee at gmail.com>
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
More information about the Libreoffice-commits
mailing list