From: Laurent Aimar Date: Thu, 10 Jun 2010 19:41:25 +0000 (+0200) Subject: Removed wrong casts in msw. X-Git-Tag: 1.2.0-pre1~6242 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=9064f47392f9bc9c48f6187219d7953cedfbd586;p=vlc Removed wrong casts in msw. --- diff --git a/modules/video_output/msw/events.c b/modules/video_output/msw/events.c index 8af17019f4..dd606b27c0 100644 --- a/modules/video_output/msw/events.c +++ b/modules/video_output/msw/events.c @@ -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;