Kaydet (Commit) a78cb2ba authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl Kaydeden (comit) Tomaž Vajngerl

remove unneeded @since tags from added pivot chart UNO interfaces

Change-Id: Iafeeedbc617d0824d8f384f8515faea35a3e419f
Reviewed-on: https://gerrit.libreoffice.org/37211Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarTomaž Vajngerl <quikee@gmail.com>
üst 089c8a6e
......@@ -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();
......
......@@ -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();
};
......
......@@ -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);
};
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment