diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-02-27 04:04:26 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-02-27 09:43:45 +0000 |
commit | aa10a19c8e56a51654bcb26f718f6e7187159c72 (patch) | |
tree | 4b9940918dbdc052cd2fa045404a1a2a0ebfffa3 /offapi | |
parent | 2a285790535c0ae4c2d791c8f8c44038203d82b7 (diff) |
uitest: add a specific method for executing dialogs
This allows us to split the parts that need to run async and the ones
that can run synchronous. This will reduce the number of signals that we
need.
Change-Id: I9c9f3df3422cc66d28d66e0638e212b39c743e33
Reviewed-on: https://gerrit.libreoffice.org/34669
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/ui/test/XUITest.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/offapi/com/sun/star/ui/test/XUITest.idl b/offapi/com/sun/star/ui/test/XUITest.idl index 87a091202ffd..89da44c7d6e7 100644 --- a/offapi/com/sun/star/ui/test/XUITest.idl +++ b/offapi/com/sun/star/ui/test/XUITest.idl @@ -18,6 +18,8 @@ interface XUITest { void executeCommand([in] string command); + void executeDialog([in] string command); + XUIObject getTopFocusWindow(); }; |