Commit 7bfc0c63 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: the deprecated vlc_object_get takes 2 args now.

parent 52be1354
......@@ -766,7 +766,7 @@
vlc_thread_set_priority( VLCIntf , VLC_THREAD_PRIORITY_LOW );
p_object = (vlc_object_t *)vlc_object_get( [o_data objectID] );
p_object = (vlc_object_t *)vlc_object_get( VLCIntf->p_libvlc, [o_data objectID] );
if( p_object != NULL )
{
......
......@@ -531,7 +531,7 @@ static VLCTreeItem *o_root_item = nil;
/* Get a pointer to the module */
if( i_object_category == -1 )
{
p_module = (module_t *) vlc_object_get( i_object_id );
p_module = (module_t *) vlc_object_get( p_intf->p_libvlc, i_object_id );
assert( p_module );
p_items = module_GetConfig( p_module, &confsize );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment