]> git.sesse.net Git - vlc/commitdiff
Remove code killed by previous commit
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 15 Dec 2007 16:07:40 +0000 (16:07 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 15 Dec 2007 16:07:40 +0000 (16:07 +0000)
modules/gui/beos/PreferencesWindow.cpp
modules/gui/macosx/prefs_widgets.m
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/wince/preferences_widgets.cpp
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp

index 248741a40d579d1515337adc36034ed612f3c478..9d5c0320aea85be32e6dab0ca7ae53c867075bd7 100644 (file)
@@ -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;
 
index b4d40b8eab73978ff96a9b3356f67cc833e1ddcf..d23d3705c6b0f3f9637ce86654cc31019533e7d7 100644 (file)
                       withView: (NSView *)o_parent_view
 {
     VLCConfigControl *p_control = NULL;
-    /* Skip depracated options */
-    if( _p_item->psz_current )
-    {
-        return NULL;
-    }
 
     switch( _p_item->i_type )
     {
index 83d4833a0e484f53ea784a116550a413d8680d14..e7d8247e8d837c721f8ce809768bfacaf9f4605a 100644 (file)
@@ -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 )
     {
index 648dfd6857bbc7b9cef91faf8bbd63a19d484654..298954ad9f24d02911efe563f968515b56ee0316 100644 (file)
@@ -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:
index 57f8d012d209b506cea96e9a3cb2c4674fee54c8..1d3974195c66f5763cd2b1d4e9ced6089a6cf372 100644 (file)
@@ -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: