summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XMenu.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XMenu.idl')
-rw-r--r--offapi/com/sun/star/awt/XMenu.idl14
1 files changed, 7 insertions, 7 deletions
diff --git a/offapi/com/sun/star/awt/XMenu.idl b/offapi/com/sun/star/awt/XMenu.idl
index ab80ac6cdaeb..ba8fedc50434 100644
--- a/offapi/com/sun/star/awt/XMenu.idl
+++ b/offapi/com/sun/star/awt/XMenu.idl
@@ -36,13 +36,13 @@ published interface XMenu: com::sun::star::uno::XInterface
/** adds the specified menu listener to receive events from this menu.
*/
- [oneway] void addMenuListener( [in] XMenuListener xListener );
+ void addMenuListener( [in] XMenuListener xListener );
/** removes the specified menu listener so that it no longer
receives events from this menu.
*/
- [oneway] void removeMenuListener( [in] XMenuListener xListener );
+ void removeMenuListener( [in] XMenuListener xListener );
/** inserts an item into the menu.
@@ -50,7 +50,7 @@ published interface XMenu: com::sun::star::uno::XInterface
<p>The item is appended if the position is greater than or equal to
<code>getItemCount()</code> or if it is negative.</p>
*/
- [oneway] void insertItem( [in] short nItemId,
+ void insertItem( [in] short nItemId,
[in] string aText,
[in] short nItemStyle,
[in] short nPos );
@@ -58,7 +58,7 @@ published interface XMenu: com::sun::star::uno::XInterface
/** removes one or more items from the menu.
*/
- [oneway] void removeItem( [in] short nPos,
+ void removeItem( [in] short nPos,
[in] short nCount );
@@ -79,7 +79,7 @@ published interface XMenu: com::sun::star::uno::XInterface
/** enables or disables the menu item.
*/
- [oneway] void enableItem( [in] short nItemId,
+ void enableItem( [in] short nItemId,
[in] boolean bEnable );
@@ -90,7 +90,7 @@ published interface XMenu: com::sun::star::uno::XInterface
/** sets the text for the menu item.
*/
- [oneway] void setItemText( [in] short nItemId,
+ void setItemText( [in] short nItemId,
[in] string aText );
@@ -101,7 +101,7 @@ published interface XMenu: com::sun::star::uno::XInterface
/** sets the pop-up menu for a specified menu item.
*/
- [oneway] void setPopupMenu( [in] short nItemId,
+ void setPopupMenu( [in] short nItemId,
[in] XPopupMenu aPopupMenu );