From 90eac3e69749a9227c4b6902b1f3cef1e338c6d1 Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Thu, 29 Nov 2012 21:27:57 +0100 Subject: 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 --- offapi/com/sun/star/mozilla/XCloseSessionListener.idl | 2 +- offapi/com/sun/star/mozilla/XMenuProxy.idl | 4 ++-- offapi/com/sun/star/mozilla/XPluginInstance.idl | 12 ++++++------ offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl | 2 +- offapi/com/sun/star/mozilla/XPluginInstancePeer.idl | 10 +++++----- offapi/com/sun/star/mozilla/XPluginWindowPeer.idl | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) (limited to 'offapi/com/sun/star/mozilla') diff --git a/offapi/com/sun/star/mozilla/XCloseSessionListener.idl b/offapi/com/sun/star/mozilla/XCloseSessionListener.idl index 408848b8033a..dee9330c408c 100644 --- a/offapi/com/sun/star/mozilla/XCloseSessionListener.idl +++ b/offapi/com/sun/star/mozilla/XCloseSessionListener.idl @@ -39,7 +39,7 @@ published interface XCloseSessionListener: com::sun::star::uno::XInterface @param sessionData [in]: the data identifying the session that was closed */ - [oneway] void sessionClosed( [in] any sessionData ); + void sessionClosed( [in] any sessionData ); }; diff --git a/offapi/com/sun/star/mozilla/XMenuProxy.idl b/offapi/com/sun/star/mozilla/XMenuProxy.idl index e148cf90ab9b..7492756faf3c 100644 --- a/offapi/com/sun/star/mozilla/XMenuProxy.idl +++ b/offapi/com/sun/star/mozilla/XMenuProxy.idl @@ -52,7 +52,7 @@ published interface XMenuProxy: com::sun::star::lang::XComponent @param xListener [in]: the listener to be set */ - [oneway] void addMenuProxyListener([in] XMenuProxyListener xListener ); + void addMenuProxyListener([in] XMenuProxyListener xListener ); // DocMerge from xml: method com::sun::star::mozilla::XMenuProxy::removeMenuProxyListener @@ -62,7 +62,7 @@ published interface XMenuProxy: com::sun::star::lang::XComponent @param xListener [in]: the listener to be removed */ - [oneway] void removeMenuProxyListener([in] XMenuProxyListener xListener ); + void removeMenuProxyListener([in] XMenuProxyListener xListener ); }; diff --git a/offapi/com/sun/star/mozilla/XPluginInstance.idl b/offapi/com/sun/star/mozilla/XPluginInstance.idl index bf0d1fee6061..87eaf3f24135 100644 --- a/offapi/com/sun/star/mozilla/XPluginInstance.idl +++ b/offapi/com/sun/star/mozilla/XPluginInstance.idl @@ -39,7 +39,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface /** Starts plugin operation. This is called after a plugin instance is created. */ - [oneway] void start(); + void start(); @@ -48,7 +48,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface page. The XPluginInstance::destroy method is directly called afterwards. */ - [oneway] void stop(); + void stop(); @@ -57,7 +57,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface longer possible to return to the plugin instance, because it was destroyed by the browser (e.g., window close). */ - [oneway] void destroy(); + void destroy(); @@ -68,7 +68,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface @param embedded [in]: selects embedded or full page plugin mode */ - [oneway] void createWindow( [in] any PlatformParentData, [in] boolean embedded ); + void createWindow( [in] any PlatformParentData, [in] boolean embedded ); @@ -82,7 +82,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface @param sessiondata [in]: the data specifying the current session */ - [oneway] void newStream( + void newStream( [in] string MIMEDesc, [in] string theURL, [in] string filter, @@ -101,7 +101,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface @param sessiondata [in]: the data specifying the current session */ - [oneway] void newURL( [in] string MIMEDesc, [in] string theURL, [in] string filter, [in] any sessionData ); + void newURL( [in] string MIMEDesc, [in] string theURL, [in] string filter, [in] any sessionData ); diff --git a/offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl b/offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl index 7133d95ff73f..fea102d1bd42 100644 --- a/offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl +++ b/offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl @@ -42,7 +42,7 @@ published interface XPluginInstanceNotifySink: com::sun::star::uno::XInterface @param theURL [in]: name of the URL that was used during a previous getURL or postURL call */ - [oneway] void notifyURL( [in] string theURL ); + void notifyURL( [in] string theURL ); }; diff --git a/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl b/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl index 2b67404cf84b..f2006d6dfb31 100644 --- a/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl +++ b/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl @@ -60,7 +60,7 @@ published interface XPluginInstancePeer: com::sun::star::uno::XInterface @param message [in]: the string to be displayed */ - [oneway] void showStatusMessage( [in] string message ); + void showStatusMessage( [in] string message ); @@ -72,7 +72,7 @@ published interface XPluginInstancePeer: com::sun::star::uno::XInterface @param servicemanager [in]: the office servicemanager */ - [oneway] void enableScripting( [in] com::sun::star::uno::XInterface document, [in] com::sun::star::lang::XMultiServiceFactory servicemanager ); + void enableScripting( [in] com::sun::star::uno::XInterface document, [in] com::sun::star::lang::XMultiServiceFactory servicemanager ); @@ -85,7 +85,7 @@ published interface XPluginInstancePeer: com::sun::star::uno::XInterface @param data [in]: on success the output stream will be associated with this instance */ - [oneway] void newStream( + void newStream( [in] string MIMEDesc, [in] string target, [in] com::sun::star::io::XActiveDataSource data @@ -104,7 +104,7 @@ published interface XPluginInstancePeer: com::sun::star::uno::XInterface @param sink [in]: the sink is notified on success */ - [oneway] void getURL ( + void getURL ( [in] string aURL, [in] string target, [in] string alternativeHost, @@ -127,7 +127,7 @@ published interface XPluginInstancePeer: com::sun::star::uno::XInterface @param sink [in]: the sink is notified on success */ - [oneway] void postURL ( + void postURL ( [in] string aURL, [in] com::sun::star::io::XInputStream postData, [in] string target, diff --git a/offapi/com/sun/star/mozilla/XPluginWindowPeer.idl b/offapi/com/sun/star/mozilla/XPluginWindowPeer.idl index 85276cbcd007..6f1e54aa9f2f 100644 --- a/offapi/com/sun/star/mozilla/XPluginWindowPeer.idl +++ b/offapi/com/sun/star/mozilla/XPluginWindowPeer.idl @@ -39,7 +39,7 @@ published interface XPluginWindowPeer: com::sun::star::uno::XInterface @param SystemWindowData [in]: platform dependent window data */ - [oneway] void setChildWindow( [in] any SystemWindowData ); + void setChildWindow( [in] any SystemWindowData ); }; -- cgit