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

Remove write-only value

parent c4aac77c
...@@ -259,7 +259,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -259,7 +259,6 @@ static int Open( vlc_object_t *p_this )
/* Allocations */ /* Allocations */
p_sys = p_intf->p_sys = new intf_sys_t; p_sys = p_intf->p_sys = new intf_sys_t;
p_sys->b_isDialogProvider = false; p_sys->b_isDialogProvider = false;
p_sys->p_video = NULL; /* ??? */
p_sys->p_popup_menu = NULL; /* ??? */ p_sys->p_popup_menu = NULL; /* ??? */
p_sys->p_playlist = pl_Hold( p_intf ); p_sys->p_playlist = pl_Hold( p_intf );
p_sys->p_mi = NULL; p_sys->p_mi = NULL;
......
...@@ -75,8 +75,6 @@ struct intf_sys_t ...@@ -75,8 +75,6 @@ struct intf_sys_t
playlist_t *p_playlist; playlist_t *p_playlist;
VideoWidget *p_video;
const char *psz_filepath; const char *psz_filepath;
QMenu * p_popup_menu; QMenu * p_popup_menu;
}; };
......
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