Commit 0f395d9f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

macosx: use vlc_LogSet()

parent 70d9e0fc
...@@ -67,9 +67,6 @@ struct intf_sys_t ...@@ -67,9 +67,6 @@ struct intf_sys_t
bool b_input_update; bool b_input_update;
bool b_aout_update; bool b_aout_update;
bool b_vout_update; bool b_vout_update;
/* The messages window */
msg_subscription_t sub;
}; };
/***************************************************************************** /*****************************************************************************
......
...@@ -115,7 +115,7 @@ int OpenIntf (vlc_object_t *p_this) ...@@ -115,7 +115,7 @@ int OpenIntf (vlc_object_t *p_this)
memset(p_intf->p_sys, 0, sizeof(*p_intf->p_sys)); memset(p_intf->p_sys, 0, sizeof(*p_intf->p_sys));
/* subscribe to LibVLCCore's messages */ /* subscribe to LibVLCCore's messages */
vlc_Subscribe(&p_intf->p_sys->sub, MsgCallback, NULL); vlc_LogSet(p_this->p_libvlc, MsgCallback, NULL);
Run(p_intf); Run(p_intf);
...@@ -890,7 +890,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -890,7 +890,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[o_eyetv release]; [o_eyetv release];
/* unsubscribe from libvlc's debug messages */ /* unsubscribe from libvlc's debug messages */
vlc_Unsubscribe(&p_intf->p_sys->sub); vlc_LogSet(p_intf->p_libvlc, NULL, NULL);
[o_msg_arr removeAllObjects]; [o_msg_arr removeAllObjects];
[o_msg_arr release]; [o_msg_arr release];
......
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