]> git.sesse.net Git - vlc/commitdiff
Fix compilation while this gets sorted out.
authorAntoine Cellerier <dionoea@videolan.org>
Wed, 22 Aug 2007 20:28:07 +0000 (20:28 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 22 Aug 2007 20:28:07 +0000 (20:28 +0000)
modules/gui/qt4/components/extended_panels.cpp

index e9c69182a82220a65a2a040be9854e7a09bee49d..23876c472609ace11464fcbc51d2f487e6576989 100644 (file)
@@ -208,11 +208,14 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
     char *psz_parser, *psz_string;
 
     char *psz_filter_type;
+    msg_Err( p_intf, "FIXME %s %s %d.", __FILE__, __func__, __LINE__ );
+    return;
+#if 0
 
     /* Please leave p_libvlc_global. This is where cached modules are
      * stored. We're not trying to find a module instance. */
     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( vlc_global_object(), psz_name, FIND_CHILD );
     if( !p_obj )
     {
         msg_Err( p_intf, "Unable to find filter module \"%s\n.", psz_name );
@@ -308,6 +311,7 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
     }
 
     free( psz_string );
+#endif
 }
 
 void ExtVideo::updateFilters()