summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-12 21:59:36 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-12 21:59:36 +0100
commitdded92a838a94a3455ceb1516dcf72dcf6bae355 (patch)
tree8ef9600d19b2f2b9f6439bd365f83d047d8dc7eb /offapi/com/sun/star/awt
parent5845d4fda95d4a1e0949ed99cef29718fa03df83 (diff)
gridsort: removed the XGridDataModel.removeRows flavour which took an arbitrary sequence of indexes - this makes the handling, in particular for listeners, unnecessarily complex, and has a questionable use only
Diffstat (limited to 'offapi/com/sun/star/awt')
-rwxr-xr-xoffapi/com/sun/star/awt/grid/XMutableGridDataModel.idl15
1 files changed, 0 insertions, 15 deletions
diff --git a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
index 9bffd3e39..6edb91895 100755
--- a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
+++ b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
@@ -71,21 +71,6 @@ interface XMutableGridDataModel : XGridDataModel
void removeRow( [in] long RowIndex )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
- /** removes multiple rows of data from the model
-
- <p>Grid data listeners are notified of this change via the <member>XGridDataListener::rowsRemoved</member>
- method. The <member>GridDataEvent::Rows</member> member contains the indexes of the rows before the removal.
- This is important to take into account by the listener, as with every removed row, the index of all subsequent
- rows changes - nonetheless, the <code>Rows</code> array contains the original row indexes.</p>
-
- @param RowIndexes
- the indexes of the rows that should be removed.
- @throws ::com::sun::star::lang::IndexOutOfBoundsException
- if one of the indexes given in <code>RowIndexes</code> is invalid.
- */
- void removeRows( [in] sequence< long > RowIndexes )
- raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
-
/** Removes all rows from the model.
*/
void removeAllRows();