summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 16:01:48 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:02:44 +0200
commit53bdc87a596676d3c4a787615f30466e4efc3f7c (patch)
treed0297def3e4ed11b0446628963b3ca2e1305a587 /vcl
parente6a92c923769f0f3351fa081b17cb132536f934c (diff)
uitest: loplugin:staticcall
Change-Id: I0e8fd138689e73cd0b320d0898e0410baa2bcfa9
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/uitest/uno/uitest_uno.cxx4
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));
}