diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-01-12 04:00:21 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:01:33 +0200 |
commit | 2bb637426cb48bfcec1e0041c3ad3144d044485e (patch) | |
tree | c455ee71d99eb418713614491326f20990dff9a3 /offapi | |
parent | 8317e2e5a9b74b10914072516211a9cc1ed7b6ba (diff) |
uitest: support the parameters in the executeAction command
Change-Id: I78df2fe58b9d1386f360bef4c0eeddb6afe83b8d
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/ui/test/XUIObject.idl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/offapi/com/sun/star/ui/test/XUIObject.idl b/offapi/com/sun/star/ui/test/XUIObject.idl index 0e5192674028..962fde74dd9d 100644 --- a/offapi/com/sun/star/ui/test/XUIObject.idl +++ b/offapi/com/sun/star/ui/test/XUIObject.idl @@ -10,13 +10,15 @@ #ifndef __com_sun_star_ui_test_XUIObject_idl__ #define __com_sun_star_ui_test_XUIObject_idl__ +#include <com/sun/star/beans/PropertyValues.idl> + module com { module sun { module star { module ui { module test { interface XUIObject { XUIObject getChild([in] string id); - void executeAction([in] string action); + void executeAction([in] string action, [in] com::sun::star::beans::PropertyValues propValues); }; }; }; }; }; }; |