summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uui/source/iahndl.cxx4
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);