diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:08:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:09:28 +0100 |
commit | 33875d862ad5d870cfd1f67d5ef9ad91b8be740f (patch) | |
tree | 950261ce1f43ee7ef6e16e58c583d0be9399d483 | |
parent | 9b88d532375a6d89c241053c40581d9f963fa1b0 (diff) |
Clean up C-style casts from pointers to void
Change-Id: I9622ea906878cd8ed8235bfd4a84217817c132cc
-rw-r--r-- | 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 15a34929196d..f265fe6370b4 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -194,8 +194,8 @@ sal_IntPtr UUIInteractionHelper::getstringfromrequest( void* pHandleData,void* pInteractionHelper) { - HandleData* pHND = (HandleData*) pHandleData; - UUIInteractionHelper* pUUI = (UUIInteractionHelper*) pInteractionHelper; + HandleData* pHND = static_cast<HandleData*>(pHandleData); + UUIInteractionHelper* pUUI = static_cast<UUIInteractionHelper*>(pInteractionHelper); pHND->m_aResult = pUUI->getStringFromRequest_impl(pHND->m_rRequest); pHND->set(); return 0; |