diff options
author | David Ostrovsky <david@ostrovsky.org> | 2015-01-10 12:36:22 +0100 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2015-01-10 21:37:08 +0000 |
commit | 2ce00302275f8676decbdfe919590bb215b1c134 (patch) | |
tree | dd943126e52dc268a38e5766bd7f9427feb8e65a /uui | |
parent | 28deec717c40e04c41f66b094fe2c1e969241525 (diff) |
Fix long/sal_IntPtr mismatch on x86_64 platform on windows
25e291438231611823dadc195fd26d26a1b8ece4 changed Link class to
use sal_IntPtr instead of long, but missed to adjust number of
occurrences.
Change-Id: I966185083a41b41c7385947a03369a8ce65c61b8
Reviewed-on: https://gerrit.libreoffice.org/13852
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Tested-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl.cxx | 4 | ||||
-rw-r--r-- | uui/source/iahndl.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index cae3bf9f732e..afbc211160aa 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -146,7 +146,7 @@ UUIInteractionHelper::~UUIInteractionHelper() { } -long +sal_IntPtr UUIInteractionHelper::handlerequest( void* pHandleData, void* pInteractionHelper) { @@ -191,7 +191,7 @@ UUIInteractionHelper::handleRequest( } } -long +sal_IntPtr UUIInteractionHelper::getstringfromrequest( void* pHandleData,void* pInteractionHelper) { diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx index 789fcb77e6ab..5b0c262c7695 100644 --- a/uui/source/iahndl.hxx +++ b/uui/source/iahndl.hxx @@ -131,7 +131,7 @@ private: bool & bHasErrorString, OUString & rErrorString); - static long + static sal_IntPtr handlerequest(void* pHandleData, void* pInteractionHandler); com::sun::star::beans::Optional< OUString > @@ -139,7 +139,7 @@ private: com::sun::star::uno::Reference< com::sun::star::task::XInteractionRequest > const & rRequest); - static long + static sal_IntPtr getstringfromrequest(void* pHandleData, void* pInteractionHandler); vcl::Window * |