diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 16:01:48 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:02:44 +0200 |
commit | 53bdc87a596676d3c4a787615f30466e4efc3f7c (patch) | |
tree | d0297def3e4ed11b0446628963b3ca2e1305a587 /vcl | |
parent | e6a92c923769f0f3351fa081b17cb132536f934c (diff) |
uitest: loplugin:staticcall
Change-Id: I0e8fd138689e73cd0b320d0898e0410baa2bcfa9
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/uitest/uno/uitest_uno.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/uitest/uno/uitest_uno.cxx b/vcl/source/uitest/uno/uitest_uno.cxx index 10b7f127441e..52700899c7a6 100644 --- a/vcl/source/uitest/uno/uitest_uno.cxx +++ b/vcl/source/uitest/uno/uitest_uno.cxx @@ -69,13 +69,13 @@ void SAL_CALL UITestUnoObj::executeCommand(const OUString& rCommand) throw (css::uno::RuntimeException, std::exception) { SolarMutexGuard aGuard; - mpUITest->executeCommand(rCommand); + UITest::executeCommand(rCommand); } css::uno::Reference<css::ui::test::XUIObject> SAL_CALL UITestUnoObj::getTopFocusWindow() throw (css::uno::RuntimeException, std::exception) { - std::unique_ptr<UIObject> pObj = mpUITest->getFocusTopWindow(); + std::unique_ptr<UIObject> pObj = UITest::getFocusTopWindow(); return new UIObjectUnoObj(std::move(pObj)); } |