diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:52:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:54:36 +0200 |
commit | f751e4b15256e53413395691f9ac50acaa5598eb (patch) | |
tree | 2b2a5aebcbc20dcfaefad0b2f0565686ed2eef7a /uui | |
parent | 4ef5dfad794673f06038e8d8550795d9c5203885 (diff) |
loplugin:staticcall
Change-Id: I3f6b4fe6190d5d6c09935d590690e8aab607f894
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl.cxx | 4 |
1 files 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); |