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

Remove code killed by previous commit

parent 773c6cd4
......@@ -614,12 +614,6 @@ ConfigWidget::ConfigWidget( intf_thread_t * _p_intf, BRect rect,
BRect r;
BMenuItem * menuItem;
/* Skip deprecated options */
if( p_item->psz_current )
{
fInitOK = false;
return;
}
fInitOK = true;
......
......@@ -812,11 +812,6 @@
withView: (NSView *)o_parent_view
{
VLCConfigControl *p_control = NULL;
/* Skip depracated options */
if( _p_item->psz_current )
{
return NULL;
}
switch( _p_item->i_type )
{
......
......@@ -74,7 +74,6 @@ ConfigControl *ConfigControl::createControl( vlc_object_t *p_this,
QGridLayout *l, int &line )
{
ConfigControl *p_control = NULL;
if( p_item->psz_current || p_item->b_unsaveable ) return NULL;
switch( p_item->i_type )
{
......
......@@ -47,10 +47,6 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
{
ConfigControl *p_control = NULL;
if( p_item->psz_current )
{
return NULL;
}
switch( p_item->i_type )
{
case CONFIG_ITEM_MODULE:
......
......@@ -38,12 +38,6 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
{
ConfigControl *p_control = NULL;
/*Skip deprecated options */
if( p_item->psz_current || p_item->b_unsaveable )
{
return NULL;
}
switch( p_item->i_type )
{
case CONFIG_ITEM_MODULE:
......
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