From 9064f47392f9bc9c48f6187219d7953cedfbd586 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Thu, 10 Jun 2010 21:41:25 +0200 Subject: [PATCH] Removed wrong casts in msw. --- modules/video_output/msw/events.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2