summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-14 14:20:49 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-14 14:20:49 +0100
commit7af54f5dfe1aa651cfec80727c18a83de6737762 (patch)
treef3b92b61656a18c98de4895ea11b281614382c36 /offapi
parentfda5c8a28a2601df5a2dcab0f30ac5ac64cbccf0 (diff)
gridsort: updateCell->updateCellData, setCellToolTip->updateCellToolTip; in both methods, have (Col,Row) params instead of (Row,Col), for consistency reasons
Diffstat (limited to 'offapi')
-rwxr-xr-xoffapi/com/sun/star/awt/grid/XMutableGridDataModel.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
index e593cc1a7c27..75b8944b8ef3 100755
--- a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
+++ b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
@@ -76,16 +76,16 @@ interface XMutableGridDataModel : XGridDataModel
void removeAllRows();
/** updates the content of the given cell
- @param RowIndex
- the row index of the to-be-updated cell
@param ColumnIndex
the column index of the to-be-updated cell
+ @param RowIndex
+ the row index of the to-be-updated cell
@param Value
the new value of the cell.
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the row or column index is invalid
*/
- void updateCell( [in] long RowIndex, [in] long ColumnIndex, [in] any Value )
+ void updateCellData( [in] long ColumnIndex, [in] long RowIndex, [in] any Value )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
/** updates the content of a given row.
@@ -123,7 +123,7 @@ interface XMutableGridDataModel : XGridDataModel
@see XGridDataModel::getCellToolTip
*/
- void setCellToolTip( [in] long RowIndex, [in] long ColumnIndex, [in] any Value )
+ void updateCellToolTip( [in] long ColumnIndex, [in] long RowIndex, [in] any Value )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
//-------------------------------------------------------------------------