From f751e4b15256e53413395691f9ac50acaa5598eb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 13 Jun 2014 17:52:58 +0200 Subject: [PATCH] loplugin:staticcall Change-Id: I3f6b4fe6190d5d6c09935d590690e8aab607f894 --- uui/source/iahndl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index cb6470ba1d18..4704d937d91a 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -181,7 +181,7 @@ UUIInteractionHelper::handleRequest( // we are not in the main thread, let it handle that stuff HandleData aHD(rRequest); Link aLink(&aHD,handlerequest); - pApp->PostUserEvent(aLink,this); + Application::PostUserEvent(aLink,this); sal_uLong locks = Application::ReleaseSolarMutex(); aHD.wait(); Application::AcquireSolarMutex(locks); @@ -240,7 +240,7 @@ UUIInteractionHelper::getStringFromRequest( // we are not in the main thread, let it handle that stuff HandleData aHD(rRequest); Link aLink(&aHD,getstringfromrequest); - pApp->PostUserEvent(aLink,this); + Application::PostUserEvent(aLink,this); sal_uLong locks = Application::ReleaseSolarMutex(); aHD.wait(); Application::AcquireSolarMutex(locks);