summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sdb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-04 16:50:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-04 16:54:23 +0200
commite76b2053b4c5520ec880fb4fa0031a7ff2ca9ee5 (patch)
treeb7c5aee12bd2782680b183c097cc9b8e603c346e /offapi/com/sun/star/sdb
parent330b860205c7ba69dd6603f65324d0f89ad9cd5f (diff)
Fix UNOIDL interface method parameter identifiers
UNOIDL identifiers starting with a lowercase letter and containing underscores are reserved for the implementation. It would be good to be able to enforce that in code parsing UNOIDL files, but some existing identifiers violate that. So at least change any violating method parameter identifiers here. While that is theoretically an incompatible change for published interfaces, it practically does not matter at all. Change-Id: I5eff17b5dd5e2e92984184127c4fe1712d62c9dd
Diffstat (limited to 'offapi/com/sun/star/sdb')
-rw-r--r--offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl4
-rw-r--r--offapi/com/sun/star/sdb/XRowSetChangeListener.idl2
2 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl b/offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl
index d597caef7172..632c4ce48284 100644
--- a/offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl
+++ b/offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl
@@ -38,11 +38,11 @@ interface XRowSetChangeBroadcaster
{
/** adds a listener to be notified when the <code>RowSet</code> supplied by the component changes.
*/
- void addRowSetChangeListener( [in] XRowSetChangeListener i_Listener );
+ void addRowSetChangeListener( [in] XRowSetChangeListener iListener );
/** removes a previously added listener.
*/
- void removeRowSetChangeListener( [in] XRowSetChangeListener i_Listener );
+ void removeRowSetChangeListener( [in] XRowSetChangeListener iListener );
};
diff --git a/offapi/com/sun/star/sdb/XRowSetChangeListener.idl b/offapi/com/sun/star/sdb/XRowSetChangeListener.idl
index 24b076087070..8e178b962a01 100644
--- a/offapi/com/sun/star/sdb/XRowSetChangeListener.idl
+++ b/offapi/com/sun/star/sdb/XRowSetChangeListener.idl
@@ -38,7 +38,7 @@ module com { module sun { module star { module sdb {
/** notifies the listener that the <code>RowSet</code> associated with a XRowSetSupplier
has changed.
*/
- void onRowSetChanged( [in] ::com::sun::star::lang::EventObject i_Event );
+ void onRowSetChanged( [in] ::com::sun::star::lang::EventObject iEvent );
};