summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/view
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/view')
-rw-r--r--offapi/com/sun/star/view/XPrintJobBroadcaster.idl4
-rw-r--r--offapi/com/sun/star/view/XPrintJobListener.idl2
-rw-r--r--offapi/com/sun/star/view/XPrintableBroadcaster.idl4
-rw-r--r--offapi/com/sun/star/view/XPrintableListener.idl2
-rw-r--r--offapi/com/sun/star/view/XSelectionChangeListener.idl2
5 files changed, 7 insertions, 7 deletions
diff --git a/offapi/com/sun/star/view/XPrintJobBroadcaster.idl b/offapi/com/sun/star/view/XPrintJobBroadcaster.idl
index f6d8db90e847..b8c31e0085d6 100644
--- a/offapi/com/sun/star/view/XPrintJobBroadcaster.idl
+++ b/offapi/com/sun/star/view/XPrintJobBroadcaster.idl
@@ -39,11 +39,11 @@ published interface XPrintJobBroadcaster : com::sun::star::uno::XInterface
{
/** adds an <type>XPrintJobListener</type> to be notified about print progress.
*/
- [oneway] void addPrintJobListener( [in] XPrintJobListener xListener );
+ void addPrintJobListener( [in] XPrintJobListener xListener );
/** removes an <type>XPrintJobListener</type>.
*/
- [oneway] void removePrintJobListener( [in] XPrintJobListener xListener );
+ void removePrintJobListener( [in] XPrintJobListener xListener );
};
}; }; }; };
diff --git a/offapi/com/sun/star/view/XPrintJobListener.idl b/offapi/com/sun/star/view/XPrintJobListener.idl
index 8889e90fe15f..73a031b7bfe1 100644
--- a/offapi/com/sun/star/view/XPrintJobListener.idl
+++ b/offapi/com/sun/star/view/XPrintJobListener.idl
@@ -41,7 +41,7 @@ published interface XPrintJobListener : com::sun::star::lang::XEventListener
@param Event
contains the <type>XPrintJob</type> having changed state and the new state.
*/
- [oneway] void printJobEvent( [in] PrintJobEvent Event );
+ void printJobEvent( [in] PrintJobEvent Event );
};
}; }; }; };
diff --git a/offapi/com/sun/star/view/XPrintableBroadcaster.idl b/offapi/com/sun/star/view/XPrintableBroadcaster.idl
index 775e3a6b4863..bd634eff5e50 100644
--- a/offapi/com/sun/star/view/XPrintableBroadcaster.idl
+++ b/offapi/com/sun/star/view/XPrintableBroadcaster.idl
@@ -37,11 +37,11 @@ published interface XPrintableBroadcaster : com::sun::star::uno::XInterface
{
/** adds an <type>XPrintableListener</type> to be notified about print progress.
*/
- [oneway] void addPrintableListener( [in] XPrintableListener xListener );
+ void addPrintableListener( [in] XPrintableListener xListener );
/** removes an <type>XPrintableListener</type>.
*/
- [oneway] void removePrintableListener( [in] XPrintableListener xListener );
+ void removePrintableListener( [in] XPrintableListener xListener );
};
}; }; }; };
diff --git a/offapi/com/sun/star/view/XPrintableListener.idl b/offapi/com/sun/star/view/XPrintableListener.idl
index 9fa51a994ebf..3c03eb525ccf 100644
--- a/offapi/com/sun/star/view/XPrintableListener.idl
+++ b/offapi/com/sun/star/view/XPrintableListener.idl
@@ -41,7 +41,7 @@ published interface XPrintableListener : com::sun::star::lang::XEventListener
@param Event
contains the <type>XPrintable</type> having changed state and the new state.
*/
- [oneway] void stateChanged( [in] PrintableStateEvent Event );
+ void stateChanged( [in] PrintableStateEvent Event );
};
}; }; }; };
diff --git a/offapi/com/sun/star/view/XSelectionChangeListener.idl b/offapi/com/sun/star/view/XSelectionChangeListener.idl
index 4eaf62677c0f..d1da7e5c5c7c 100644
--- a/offapi/com/sun/star/view/XSelectionChangeListener.idl
+++ b/offapi/com/sun/star/view/XSelectionChangeListener.idl
@@ -41,7 +41,7 @@ published interface XSelectionChangeListener: com::sun::star::lang::XEventListen
<member scope="com::sun::star::lang">EventObject::Source</member>.
*/
- [oneway] void selectionChanged( [in] com::sun::star::lang::EventObject aEvent );
+ void selectionChanged( [in] com::sun::star::lang::EventObject aEvent );
};