summaryrefslogtreecommitdiff
path: root/include/vcl/event.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/event.hxx')
-rw-r--r--include/vcl/event.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/event.hxx b/include/vcl/event.hxx
index 8ad67fb0efdc..05a54dc7dfc5 100644
--- a/include/vcl/event.hxx
+++ b/include/vcl/event.hxx
@@ -447,7 +447,7 @@ inline NotifyEvent::NotifyEvent( MouseNotifyEvent nEventType, vcl::Window* pWind
const void* pEvent, long nRet )
{
mpWindow = pWindow;
- mpData = (void*)pEvent;
+ mpData = const_cast<void*>(pEvent);
mnEventType = nEventType;
mnRetValue = nRet;
}
@@ -521,7 +521,7 @@ inline DataChangedEvent::DataChangedEvent( DataChangedEventType nType,
const void* pData,
AllSettingsFlags nChangeFlags )
{
- mpData = (void*)pData;
+ mpData = const_cast<void*>(pData);
mnFlags = nChangeFlags;
mnType = nType;
}