summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/ui
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/ui
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/ui')
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationListener.idl6
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePickerNotifier.idl4
2 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/ui/XUIConfigurationListener.idl b/offapi/com/sun/star/ui/XUIConfigurationListener.idl
index 38a1769c7b6c..e9e86dc7fb51 100644
--- a/offapi/com/sun/star/ui/XUIConfigurationListener.idl
+++ b/offapi/com/sun/star/ui/XUIConfigurationListener.idl
@@ -41,7 +41,7 @@ interface XUIConfigurationListener : com::sun::star::lang::XEventListener
@param Event
provides information about the element which has been inserted.
*/
- [oneway] void elementInserted( [in] ::com::sun::star::ui::ConfigurationEvent Event );
+ void elementInserted( [in] ::com::sun::star::ui::ConfigurationEvent Event );
/** is invoked when a configuration has removed an user interface element.
@@ -49,7 +49,7 @@ interface XUIConfigurationListener : com::sun::star::lang::XEventListener
@param Event
provides information about the element which has been removed.
*/
- [oneway] void elementRemoved( [in] ::com::sun::star::ui::ConfigurationEvent Event );
+ void elementRemoved( [in] ::com::sun::star::ui::ConfigurationEvent Event );
/** is invoked when a configuration has replaced an user interface element.
@@ -58,7 +58,7 @@ interface XUIConfigurationListener : com::sun::star::lang::XEventListener
provides information about the element which has been
inserted/replaced.
*/
- [oneway] void elementReplaced( [in] ::com::sun::star::ui::ConfigurationEvent Event );
+ void elementReplaced( [in] ::com::sun::star::ui::ConfigurationEvent Event );
};
diff --git a/offapi/com/sun/star/ui/dialogs/XFilePickerNotifier.idl b/offapi/com/sun/star/ui/dialogs/XFilePickerNotifier.idl
index d60526586cba..2a12e08f011e 100644
--- a/offapi/com/sun/star/ui/dialogs/XFilePickerNotifier.idl
+++ b/offapi/com/sun/star/ui/dialogs/XFilePickerNotifier.idl
@@ -38,7 +38,7 @@ published interface XFilePickerNotifier: com::sun::star::uno::XInterface
wants to receive events of type <type>FilePickerEvent</type>.
<p>Invalid interfaces or NULL values will be ignored.</p>
*/
- [oneway] void addFilePickerListener( [in] XFilePickerListener xListener );
+ void addFilePickerListener( [in] XFilePickerListener xListener );
/** Interface for clients to unregister as XFilePickerListener.
@@ -47,7 +47,7 @@ published interface XFilePickerNotifier: com::sun::star::uno::XInterface
wants to receive events of type <type>FilePickerEvent</type>.
<p>Invalid interfaces or NULL values will be ignored.</p>
*/
- [oneway] void removeFilePickerListener( [in] XFilePickerListener xListener );
+ void removeFilePickerListener( [in] XFilePickerListener xListener );
};