From: RĂ©mi Denis-Courmont Date: Thu, 16 Aug 2007 17:27:17 +0000 (+0000) Subject: Do not try to access other's filters X-Git-Tag: 0.9.0-test0~6492 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=771b937a13ca042391530236f79f9a52e27e095d;p=vlc Do not try to access other's filters --- diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp index 2ee3ffa422..a763cabeef 100644 --- a/modules/gui/qt4/components/extended_panels.cpp +++ b/modules/gui/qt4/components/extended_panels.cpp @@ -209,7 +209,7 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add ) char *psz_filter_type; vlc_object_t *p_obj = (vlc_object_t *) - vlc_object_find_name( p_intf->p_libvlc_global, psz_name, FIND_CHILD ); + vlc_object_find_name( p_intf->p_libvlc, psz_name, FIND_CHILD ); if( !p_obj ) { msg_Err( p_intf, "Unable to find filter module \"%s\n.", psz_name );