summaryrefslogtreecommitdiff
path: root/framework/source/dispatch
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/dispatch')
-rw-r--r--framework/source/dispatch/windowcommanddispatch.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/dispatch/windowcommanddispatch.cxx b/framework/source/dispatch/windowcommanddispatch.cxx
index 1619051cd74e..7f961e798204 100644
--- a/framework/source/dispatch/windowcommanddispatch.cxx
+++ b/framework/source/dispatch/windowcommanddispatch.cxx
@@ -97,7 +97,7 @@ IMPL_LINK(WindowCommandDispatch, impl_notifyCommand, void*, pParam)
if ( ! pParam)
return 0L;
- const VclWindowEvent* pEvent = (VclWindowEvent*)pParam;
+ const VclWindowEvent* pEvent = static_cast<VclWindowEvent*>(pParam);
if (pEvent->GetId() == VCLEVENT_OBJECT_DYING)
{
impl_stopListening();
@@ -106,7 +106,7 @@ IMPL_LINK(WindowCommandDispatch, impl_notifyCommand, void*, pParam)
if (pEvent->GetId() != VCLEVENT_WINDOW_COMMAND)
return 0L;
- const CommandEvent* pCommand = (CommandEvent*)pEvent->GetData();
+ const CommandEvent* pCommand = static_cast<CommandEvent*>(pEvent->GetData());
if (pCommand->GetCommand() != COMMAND_SHOWDIALOG)
return 0L;