diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-20 09:45:36 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-20 19:47:45 +0200 |
commit | 37c157340f90aac9d044aa351e5f98299da7342c (patch) | |
tree | b2ea1b01122b85e4822a3ef1920df39e5c8c0af8 /include | |
parent | a6a447b08dd3959747181fe5350db68acc8c7481 (diff) |
Propagate failure out from css.ui.test.XUITest::executeCommand/Dialog
Change-Id: Id7bd2d6f35f45d9957facf56d66cfc57a1e0ef6a
Reviewed-on: https://gerrit.libreoffice.org/39002
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/uitest/uitest.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/uitest/uitest.hxx b/include/vcl/uitest/uitest.hxx index 1674ad2fd50f..4031402e8fc0 100644 --- a/include/vcl/uitest/uitest.hxx +++ b/include/vcl/uitest/uitest.hxx @@ -19,9 +19,9 @@ class UITEST_DLLPUBLIC UITest { public: - static void executeCommand(const OUString& rCommand); + static bool executeCommand(const OUString& rCommand); - static void executeDialog(const OUString& rCommand); + static bool executeDialog(const OUString& rCommand); static std::unique_ptr<UIObject> getFocusTopWindow(); |