summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/sdbc
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2012-11-29 21:27:57 +0100
committerThorsten Behrens <tbehrens@suse.com>2012-11-30 14:36:35 +0100
commit90eac3e69749a9227c4b6902b1f3cef1e338c6d1 (patch)
tree1e02834a1b94bc06168b50b95590ee547a574927 /offapi/com/sun/star/sdbc
parentdo not write rotation when it is equal to multiple of 360 degrees (diff)
downloadcore-90eac3e69749a9227c4b6902b1f3cef1e338c6d1.tar.gz
core-90eac3e69749a9227c4b6902b1f3cef1e338c6d1.zip
API CHANGE remove [oneway] method attributes
Remove non-functional and broken [oneway] attributes from all idl files. Change idl compiler to no longer digest such idl. Change-Id: Ie14c5012beccb6242d7cd592d434a88091b695d1
Diffstat (limited to 'offapi/com/sun/star/sdbc')
-rw-r--r--offapi/com/sun/star/sdbc/XRowSet.idl4
-rw-r--r--offapi/com/sun/star/sdbc/XRowSetListener.idl6
2 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/sdbc/XRowSet.idl b/offapi/com/sun/star/sdbc/XRowSet.idl
index 0d39e7b2d20a..cb647e337fe6 100644
--- a/offapi/com/sun/star/sdbc/XRowSet.idl
+++ b/offapi/com/sun/star/sdbc/XRowSet.idl
@@ -55,13 +55,13 @@ published interface XRowSet: XResultSet
@param listener
the listener which should be registered
*/
- [oneway] void addRowSetListener([in]XRowSetListener listener );
+ void addRowSetListener([in]XRowSetListener listener );
/** removes the specified listener.
@param listener
the listener which should be registered
*/
- [oneway] void removeRowSetListener([in]XRowSetListener listener );
+ void removeRowSetListener([in]XRowSetListener listener );
};
diff --git a/offapi/com/sun/star/sdbc/XRowSetListener.idl b/offapi/com/sun/star/sdbc/XRowSetListener.idl
index 9652672da8a6..31c37364cd20 100644
--- a/offapi/com/sun/star/sdbc/XRowSetListener.idl
+++ b/offapi/com/sun/star/sdbc/XRowSetListener.idl
@@ -34,7 +34,7 @@ published interface XRowSetListener: com::sun::star::lang::XEventListener
@param event
contains information about the event
*/
- [oneway] void cursorMoved([in]com::sun::star::lang::EventObject event);
+ void cursorMoved([in]com::sun::star::lang::EventObject event);
/** is called when a row is inserted, updated, or deleted.
@param event
@@ -42,14 +42,14 @@ published interface XRowSetListener: com::sun::star::lang::XEventListener
@deprecated
@see com.sun.star.sdb.XRowsChangeListener
*/
- [oneway] void rowChanged([in]com::sun::star::lang::EventObject event);
+ void rowChanged([in]com::sun::star::lang::EventObject event);
/** is called when the row set has changed, or in other words, when the row set has
been reexecuted.
@param event
contains information about the event
*/
- [oneway] void rowSetChanged([in]com::sun::star::lang::EventObject event);
+ void rowSetChanged([in]com::sun::star::lang::EventObject event);
};