summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/grid
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-05 12:16:37 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-05 12:16:37 +0100
commit9503a5ba833f77c313879c12f6e3eae16450f3ad (patch)
treee68272c6dd287913450e7ac6daa7e8ea39b803a4 /offapi/com/sun/star/awt/grid
parent117b7d64a00af091ef1c1f150526e8ad374e6b4a (diff)
gridsort: member names usually start with UpperCase - corrected this for GridColumn/DataEvent, for sake of consistency
Diffstat (limited to 'offapi/com/sun/star/awt/grid')
-rw-r--r--offapi/com/sun/star/awt/grid/GridColumnEvent.idl10
-rw-r--r--offapi/com/sun/star/awt/grid/GridDataEvent.idl16
2 files changed, 13 insertions, 13 deletions
diff --git a/offapi/com/sun/star/awt/grid/GridColumnEvent.idl b/offapi/com/sun/star/awt/grid/GridColumnEvent.idl
index 3ee38f50e..e86e296d6 100644
--- a/offapi/com/sun/star/awt/grid/GridColumnEvent.idl
+++ b/offapi/com/sun/star/awt/grid/GridColumnEvent.idl
@@ -42,17 +42,17 @@ module com { module sun { module star { module awt { module grid {
*/
struct GridColumnEvent: com::sun::star::lang::EventObject
{
- /** Contains the property name of the changed value **/
- string valueName;
+ /** Contains the name of the attributes whose value changed. **/
+ string AttributeName;
/** Contains the old value **/
- any oldValue;
+ any OldValue;
/** Contains the new value **/
- any newValue;
+ any NewValue;
/** Contains the index of the changed column**/
- long index;
+ long ColumnIndex;
//-------------------------------------------------------------------------
};
diff --git a/offapi/com/sun/star/awt/grid/GridDataEvent.idl b/offapi/com/sun/star/awt/grid/GridDataEvent.idl
index b406c33f4..51194dd10 100644
--- a/offapi/com/sun/star/awt/grid/GridDataEvent.idl
+++ b/offapi/com/sun/star/awt/grid/GridDataEvent.idl
@@ -44,29 +44,29 @@ module com { module sun { module star { module awt { module grid {
@see XGridControl
@see XGridDataListener
- @sonce OOo 3.3.0
+ @since OOo 3.3.0
*/
struct GridDataEvent: com::sun::star::lang::EventObject
{
//-------------------------------------------------------------------------
- /** Contains the property name of the changed value **/
- string valueName;
+ /** Contains the name of the attribute whose value changed. **/
+ string AttributeName;
/** Contains the old value **/
- any oldValue;
+ any OldValue;
/** Contains the new value **/
- any newValue;
+ any NewValue;
/** Contains the index of the changed row**/
- long index;
+ long RowIndex;
/** Contains the header name of the changed row**/
- string headerName;
+ string HeaderName;
/** Contains the changed row**/
- sequence<any> rowData;
+ sequence<any> RowData;
};