summaryrefslogtreecommitdiff
path: root/uui/source
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
commitdac071dc80156c6d7d6eef90f8f71dd015aeda9c (patch)
treefc5583795d3315ee2924e232513513339b33510a /uui/source
parentcd20da4dda0140c534042785c6c3186a2a7e2a7f (diff)
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in uui
Diffstat (limited to 'uui/source')
-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 9252854009..4bf169e626 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;