From 201859a03b989419d9b1417642b6e91026a83b5e Mon Sep 17 00:00:00 2001 From: Filippo Carone Date: Sun, 25 Feb 2007 17:10:34 +0000 Subject: [PATCH] libvlc_video_get_handle renamed to _get_parent --- include/vlc/libvlc.h | 2 +- src/control/video.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/vlc/libvlc.h b/include/vlc/libvlc.h index db1aa616c9..e910bff133 100644 --- a/include/vlc/libvlc.h +++ b/include/vlc/libvlc.h @@ -438,7 +438,7 @@ VLC_PUBLIC_API void libvlc_video_set_parent( libvlc_instance_t *, libvlc_drawabl * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32) * \param p_exception an initialized exception */ -VLC_PUBLIC_API libvlc_drawable_t libvlc_video_get_handle( libvlc_instance_t *, libvlc_exception_t * ); +VLC_PUBLIC_API libvlc_drawable_t libvlc_video_get_parent( libvlc_instance_t *, libvlc_exception_t * ); /** * Set the default video output size diff --git a/src/control/video.c b/src/control/video.c index 6f137e8647..8adac83d14 100644 --- a/src/control/video.c +++ b/src/control/video.c @@ -260,7 +260,7 @@ void libvlc_video_set_parent( libvlc_instance_t *p_instance, libvlc_drawable_t d } } -libvlc_drawable_t libvlc_video_get_handle( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) +libvlc_drawable_t libvlc_video_get_parent( libvlc_instance_t *p_instance, libvlc_exception_t *p_e ) { libvlc_drawable_t result; -- 2.39.5