]> git.sesse.net Git - vlc/commitdiff
Removed wrong casts in msw.
authorLaurent Aimar <fenrir@videolan.org>
Thu, 10 Jun 2010 19:41:25 +0000 (21:41 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 10 Jun 2010 22:20:34 +0000 (00:20 +0200)
modules/video_output/msw/events.c

index 8af17019f4844e4bbe7ea656b1138f6449348604..dd606b27c0ec94a6eb81e601adf0f6749c1591f1 100644 (file)
@@ -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;