Commit 9064f473 authored by Laurent Aimar's avatar Laurent Aimar

Removed wrong casts in msw.

parent 6034b5c5
......@@ -425,9 +425,9 @@ static void *EventThread( void *p_this )
if( pwz_title )
{
SetWindowTextW( p_event->hwnd, (LPCTSTR)pwz_title );
SetWindowTextW( p_event->hwnd, pwz_title );
if( p_event->hfswnd )
SetWindowTextW( p_event->hfswnd, (LPCTSTR)pwz_title );
SetWindowTextW( p_event->hfswnd, pwz_title );
free( pwz_title );
}
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment