summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XFixedHyperlink.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XFixedHyperlink.idl')
-rw-r--r--offapi/com/sun/star/awt/XFixedHyperlink.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/awt/XFixedHyperlink.idl b/offapi/com/sun/star/awt/XFixedHyperlink.idl
index 0bb716591817..280b846bf4da 100644
--- a/offapi/com/sun/star/awt/XFixedHyperlink.idl
+++ b/offapi/com/sun/star/awt/XFixedHyperlink.idl
@@ -33,7 +33,7 @@ interface XFixedHyperlink: com::sun::star::uno::XInterface
/** sets the text of the control.
*/
- [oneway] void setText( [in] string Text );
+ void setText( [in] string Text );
/** returns the text of the control.
@@ -43,7 +43,7 @@ interface XFixedHyperlink: com::sun::star::uno::XInterface
/** sets the url of the control.
*/
- [oneway] void setURL( [in] string URL );
+ void setURL( [in] string URL );
/** returns the url of the control.
@@ -59,7 +59,7 @@ interface XFixedHyperlink: com::sun::star::uno::XInterface
2: right
</pre>
*/
- [oneway] void setAlignment( [in] short nAlign );
+ void setAlignment( [in] short nAlign );
/** returns the alignment of the text in the control.
@@ -69,12 +69,12 @@ interface XFixedHyperlink: com::sun::star::uno::XInterface
/** registers an event handler for click action event.
*/
- [oneway] void addActionListener( [in] com::sun::star::awt::XActionListener l );
+ void addActionListener( [in] com::sun::star::awt::XActionListener l );
/** unregisters an event handler for click action event.
*/
- [oneway] void removeActionListener( [in] com::sun::star::awt::XActionListener l );
+ void removeActionListener( [in] com::sun::star::awt::XActionListener l );
};