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

skins2: remove unused data

parent 0f395d9f
...@@ -108,9 +108,6 @@ struct intf_sys_t ...@@ -108,9 +108,6 @@ struct intf_sys_t
/// The playlist thread /// The playlist thread
playlist_t *p_playlist; playlist_t *p_playlist;
/// Message bank subscription
msg_subscription_t *p_sub;
// "Singleton" objects: MUST be initialized to NULL ! // "Singleton" objects: MUST be initialized to NULL !
/// Logger /// Logger
Logger *p_logger; Logger *p_logger;
......
...@@ -81,11 +81,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -81,11 +81,6 @@ static int Open( vlc_object_t *p_this )
if( p_intf->p_sys == NULL ) if( p_intf->p_sys == NULL )
return VLC_ENOMEM; return VLC_ENOMEM;
// Suscribe to messages bank
#if 0
p_intf->p_sys->p_sub = vlc_Subscribe( p_intf );
#endif
p_intf->p_sys->p_input = NULL; p_intf->p_sys->p_input = NULL;
p_intf->p_sys->p_playlist = pl_Get( p_intf ); p_intf->p_sys->p_playlist = pl_Get( p_intf );
...@@ -177,11 +172,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -177,11 +172,6 @@ static void Close( vlc_object_t *p_this )
vlc_mutex_destroy( &p_intf->p_sys->init_lock ); vlc_mutex_destroy( &p_intf->p_sys->init_lock );
vlc_cond_destroy( &p_intf->p_sys->init_wait ); vlc_cond_destroy( &p_intf->p_sys->init_wait );
// Unsubscribe from messages bank
#if 0
vlc_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
#endif
// Destroy structure // Destroy structure
free( p_intf->p_sys ); free( p_intf->p_sys );
} }
......
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