[vlc-devel] commit: Fixed msw vout titles. (Laurent Aimar )
git version control
git at videolan.org
Mon Dec 21 18:49:32 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Dec 9 21:05:28 2009 +0100| [0a38e4154a7b41cb78cf4dde5ffc70818b159012] | committer: Laurent Aimar
Fixed msw vout titles.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0a38e4154a7b41cb78cf4dde5ffc70818b159012
---
modules/video_output/msw/events.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/video_output/msw/events.c b/modules/video_output/msw/events.c
index 647a8f6..83dc7cb 100644
--- a/modules/video_output/msw/events.c
+++ b/modules/video_output/msw/events.c
@@ -354,9 +354,9 @@ static void *EventThread( void *p_this )
if( pwz_title )
{
- SetWindowText( p_event->hwnd, (LPCTSTR)pwz_title );
+ SetWindowTextW( p_event->hwnd, (LPCTSTR)pwz_title );
if( p_event->hfswnd )
- SetWindowText( p_event->hfswnd, (LPCTSTR)pwz_title );
+ SetWindowTextW( p_event->hfswnd, (LPCTSTR)pwz_title );
free( pwz_title );
}
break;
More information about the vlc-devel
mailing list