summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-13 12:57:09 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-13 12:57:09 +0100
commitf9387e6431f323a0713111a05223b4c98500005c (patch)
treed8cdb238499c6e3cd14de340946de499efe3c825 /uui
parentf6eccc2ea7f61ba4a98da966bea6475f54bd303b (diff)
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in uui
Diffstat (limited to 'uui')
-rwxr-xr-xuui/source/iahndl.cxx4
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;