summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XExtendedToolkit.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XExtendedToolkit.idl')
-rw-r--r--offapi/com/sun/star/awt/XExtendedToolkit.idl16
1 files changed, 8 insertions, 8 deletions
diff --git a/offapi/com/sun/star/awt/XExtendedToolkit.idl b/offapi/com/sun/star/awt/XExtendedToolkit.idl
index 4ed8150bc95d..ccdbf5720098 100644
--- a/offapi/com/sun/star/awt/XExtendedToolkit.idl
+++ b/offapi/com/sun/star/awt/XExtendedToolkit.idl
@@ -107,7 +107,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
same listener twice (otherwise that listener will be called
twice.)
*/
- [oneway] void addTopWindowListener (
+ void addTopWindowListener (
[in] ::com::sun::star::awt::XTopWindowListener xListener);
@@ -117,7 +117,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
listener has been registered twice (or more) then all references
will be removed.
*/
- [oneway] void removeTopWindowListener (
+ void removeTopWindowListener (
[in] ::com::sun::star::awt::XTopWindowListener xListener);
@@ -131,7 +131,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
same handler twice (otherwise that listener will be called
twice.)
*/
- [oneway] void addKeyHandler (
+ void addKeyHandler (
[in] ::com::sun::star::awt::XKeyHandler xHandler);
@@ -141,7 +141,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
handler has been registered twice (or more) then all references
will be removed.
*/
- [oneway] void removeKeyHandler (
+ void removeKeyHandler (
[in] ::com::sun::star::awt::XKeyHandler xHandler);
@@ -155,7 +155,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
same listener twice (otherwise that listener will be called
twice.)
*/
- [oneway] void addFocusListener (
+ void addFocusListener (
[in] ::com::sun::star::awt::XFocusListener xListener);
@@ -165,7 +165,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
listener has been registered twice (or more) then all references
will be removed.
*/
- [oneway] void removeFocusListener (
+ void removeFocusListener (
[in] ::com::sun::star::awt::XFocusListener xListener);
@@ -174,7 +174,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
The object that has gained the input focus. It should implement
<type scope="com::sun::star::accessibility">XAccessible</type>.
*/
- [oneway] void fireFocusGained (
+ void fireFocusGained (
[in] ::com::sun::star::uno::XInterface source);
@@ -183,7 +183,7 @@ published interface XExtendedToolkit : ::com::sun::star::uno::XInterface
The object that has lost the input focus. It should implement
<type scope="com::sun::star::accessibility">XAccessible</type>.
*/
- [oneway] void fireFocusLost (
+ void fireFocusLost (
[in] ::com::sun::star::uno::XInterface source);
};