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 { ...@@ -23,38 +23,26 @@ module com { module sun { module star { module chart2 { module data {
interface XPivotTableDataProvider : com::sun::star::uno::XInterface interface XPivotTableDataProvider : com::sun::star::uno::XInterface
{ {
/** names of column fields from the associated pivot table /** names of column fields from the associated pivot table
*
* @since LibreOffice 5.4
*/ */
sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getColumnFields(); sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getColumnFields();
/** names of row fields from the associated pivot table /** names of row fields from the associated pivot table
*
* @since LibreOffice 5.4
*/ */
sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getRowFields(); sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getRowFields();
/** names of page fields from the associated pivot table /** names of page fields from the associated pivot table
*
* @since LibreOffice 5.4
*/ */
sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getPageFields(); sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getPageFields();
/** names of data fields from the associated pivot table /** names of data fields from the associated pivot table
*
* @since LibreOffice 5.4
*/ */
sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getDataFields(); sequence<com::sun::star::chart2::data::PivotTableFieldEntry> getDataFields();
/** get the associated pivot table name /** get the associated pivot table name
*
* @since LibreOffice 5.4
*/ */
string getPivotTableName(); string getPivotTableName();
/** set the associated pivot table name /** set the associated pivot table name
*
* @since LibreOffice 5.4
*/ */
void setPivotTableName([in] string sPivotTableName); void setPivotTableName([in] string sPivotTableName);
...@@ -66,8 +54,6 @@ interface XPivotTableDataProvider : com::sun::star::uno::XInterface ...@@ -66,8 +54,6 @@ interface XPivotTableDataProvider : com::sun::star::uno::XInterface
* *
* @param nIndex * @param nIndex
* index of the data series * index of the data series
*
* @since LibreOffice 5.4
*/ */
XDataSequence createDataSequenceOfValuesByIndex([in] long nIndex); XDataSequence createDataSequenceOfValuesByIndex([in] long nIndex);
...@@ -75,14 +61,10 @@ interface XPivotTableDataProvider : com::sun::star::uno::XInterface ...@@ -75,14 +61,10 @@ interface XPivotTableDataProvider : com::sun::star::uno::XInterface
* *
* @param nIndex * @param nIndex
* index of the data series * index of the data series
*
* @since LibreOffice 5.4
*/ */
XDataSequence createDataSequenceOfLabelsByIndex([in] long nIndex); XDataSequence createDataSequenceOfLabelsByIndex([in] long nIndex);
/** creates a single data sequence of categories. /** creates a single data sequence of categories.
*
* @since LibreOffice 5.4
*/ */
XDataSequence createDataSequenceOfCategories(); XDataSequence createDataSequenceOfCategories();
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
module com { module sun { module star { module table { module com { module sun { module star { module table {
/** provides access to the settings of a pivot chart object in a /** provides access to the settings of a pivot chart object in a
table or spreadsheet. table or spreadsheet.
...@@ -23,9 +22,7 @@ module com { module sun { module star { module table { ...@@ -23,9 +22,7 @@ module com { module sun { module star { module table {
interface XTablePivotChart: com::sun::star::uno::XInterface interface XTablePivotChart: com::sun::star::uno::XInterface
{ {
/** returns the pivot table name of the associated pivot table /** returns the pivot table name of the associated pivot table
*/
@since LibreOffice 5.4
*/
string getPivotTableName(); string getPivotTableName();
}; };
......
...@@ -13,10 +13,8 @@ ...@@ -13,10 +13,8 @@
#include <com/sun/star/container/XNameAccess.idl> #include <com/sun/star/container/XNameAccess.idl>
#include <com/sun/star/awt/Rectangle.idl> #include <com/sun/star/awt/Rectangle.idl>
module com { module sun { module star { module table { module com { module sun { module star { module table {
/** provides methods to access pivot charts via name and to insert /** provides methods to access pivot charts via name and to insert
and remove pivot charts. and remove pivot charts.
...@@ -24,7 +22,6 @@ module com { module sun { module star { module table { ...@@ -24,7 +22,6 @@ module com { module sun { module star { module table {
*/ */
interface XTablePivotCharts: com::sun::star::container::XNameAccess interface XTablePivotCharts: com::sun::star::container::XNameAccess
{ {
/** creates a pivot chart and adds it to the collection. /** creates a pivot chart and adds it to the collection.
@param aName @param aName
...@@ -37,21 +34,16 @@ interface XTablePivotCharts: com::sun::star::container::XNameAccess ...@@ -37,21 +34,16 @@ interface XTablePivotCharts: com::sun::star::container::XNameAccess
@param aPivotTableName @param aPivotTableName
the name of the pivot table (data pilot) to associate the pivot chart with the name of the pivot table (data pilot) to associate the pivot chart with
@since LibreOffice 5.4
*/ */
void addNewByName( void addNewByName(
[in] string aName, [in] string aName,
[in] com::sun::star::awt::Rectangle aRect, [in] com::sun::star::awt::Rectangle aRect,
[in] string aPivotTableName); [in] string aPivotTableName);
/** removes a pivot chart from the collection. /** removes a pivot chart from the collection.
@param aName @param aName
is the name of the chart to remove. is the name of the chart to remove.
@since LibreOffice 5.4
*/ */
void removeByName([in] string aName); void removeByName([in] string aName);
}; };
......
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
module com { module sun { module star { module table { module com { module sun { module star { module table {
/** provides a method to access a collection of pivot charts in a table /** provides a method to access a collection of pivot charts in a table
or spreadsheet. or spreadsheet.
...@@ -26,14 +25,10 @@ interface XTablePivotChartsSupplier: com::sun::star::uno::XInterface ...@@ -26,14 +25,10 @@ interface XTablePivotChartsSupplier: com::sun::star::uno::XInterface
{ {
/** returns the collection of pivot charts. /** returns the collection of pivot charts.
@since LibreOffice 5.4
*/ */
com::sun::star::table::XTablePivotCharts getPivotCharts(); com::sun::star::table::XTablePivotCharts getPivotCharts();
}; };
}; }; }; }; }; }; }; };
#endif #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