diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-01-13 12:57:09 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-01-13 12:57:09 +0100 |
commit | f9387e6431f323a0713111a05223b4c98500005c (patch) | |
tree | d8cdb238499c6e3cd14de340946de499efe3c825 /uui | |
parent | f6eccc2ea7f61ba4a98da966bea6475f54bd303b (diff) |
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in uui
Diffstat (limited to 'uui')
-rwxr-xr-x | 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 f451564f9d4b..a872f7843706 100755 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -186,7 +186,7 @@ UUIInteractionHelper::handleRequest( HandleData aHD(rRequest); Link aLink(&aHD,handlerequest); pApp->PostUserEvent(aLink,this); - sal_uIntPtr locks = Application::ReleaseSolarMutex(); + sal_uLong locks = Application::ReleaseSolarMutex(); aHD.wait(); Application::AcquireSolarMutex(locks); return aHD.bHandled; @@ -247,7 +247,7 @@ UUIInteractionHelper::getStringFromRequest( HandleData aHD(rRequest); Link aLink(&aHD,getstringfromrequest); pApp->PostUserEvent(aLink,this); - sal_uIntPtr locks = Application::ReleaseSolarMutex(); + sal_uLong locks = Application::ReleaseSolarMutex(); aHD.wait(); Application::AcquireSolarMutex(locks); return aHD.m_aResult; |