summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XListBox.idl
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/awt/XListBox.idl
parent28315fb6a40dd0f43990272b11037f60d26afda7 (diff)
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/awt/XListBox.idl')
-rw-r--r--offapi/com/sun/star/awt/XListBox.idl26
1 files changed, 13 insertions, 13 deletions
diff --git a/offapi/com/sun/star/awt/XListBox.idl b/offapi/com/sun/star/awt/XListBox.idl
index 446c0e5742de..a7441cbc8afd 100644
--- a/offapi/com/sun/star/awt/XListBox.idl
+++ b/offapi/com/sun/star/awt/XListBox.idl
@@ -38,39 +38,39 @@ published interface XListBox: com::sun::star::uno::XInterface
/** registers a listener for item events.
*/
- [oneway] void addItemListener( [in] com::sun::star::awt::XItemListener l );
+ void addItemListener( [in] com::sun::star::awt::XItemListener l );
/** unregisters a listener for item events.
*/
- [oneway] void removeItemListener( [in] com::sun::star::awt::XItemListener l );
+ void removeItemListener( [in] com::sun::star::awt::XItemListener l );
/** registers a listener for action events.
*/
- [oneway] void addActionListener( [in] com::sun::star::awt::XActionListener l );
+ void addActionListener( [in] com::sun::star::awt::XActionListener l );
/** unregisters a listener for action events.
*/
- [oneway] void removeActionListener( [in] com::sun::star::awt::XActionListener l );
+ void removeActionListener( [in] com::sun::star::awt::XActionListener l );
/** adds an item at the specified position.
*/
- [oneway] void addItem( [in] string aItem,
+ void addItem( [in] string aItem,
[in] short nPos );
/** adds multiple items at the specified position.
*/
- [oneway] void addItems( [in] sequence<string> aItems,
+ void addItems( [in] sequence<string> aItems,
[in] short nPos );
/** removes a number of items at the specified position.
*/
- [oneway] void removeItems( [in] short nPos,
+ void removeItems( [in] short nPos,
[in] short nCount );
@@ -111,19 +111,19 @@ published interface XListBox: com::sun::star::uno::XInterface
/** selects/deselects the item at the specified position.
*/
- [oneway] void selectItemPos( [in] short nPos,
+ void selectItemPos( [in] short nPos,
[in] boolean bSelect );
/** selects/deselects multiple items at the specified positions.
*/
- [oneway] void selectItemsPos( [in] sequence<short> aPositions,
+ void selectItemsPos( [in] sequence<short> aPositions,
[in] boolean bSelect );
/** selects/deselects the specified item.
*/
- [oneway] void selectItem( [in] string aItem,
+ void selectItem( [in] string aItem,
[in] boolean bSelect );
@@ -135,7 +135,7 @@ published interface XListBox: com::sun::star::uno::XInterface
/** determines if only a single item or multiple items can be selected.
*/
- [oneway] void setMultipleMode( [in] boolean bMulti );
+ void setMultipleMode( [in] boolean bMulti );
/** returns the number of visible lines in drop down mode.
@@ -145,12 +145,12 @@ published interface XListBox: com::sun::star::uno::XInterface
/** sets the number of visible lines for drop down mode.
*/
- [oneway] void setDropDownLineCount( [in] short nLines );
+ void setDropDownLineCount( [in] short nLines );
/** makes the item at the specified position visible by scrolling.
*/
- [oneway] void makeVisible( [in] short nEntry );
+ void makeVisible( [in] short nEntry );
};