Changeset 1993aa3c29ccd1daf22cd5925e218b34afa52a1c

Show
Ignore:
Timestamp:
05/31/08 12:42:58 (3 months ago)
Author:
Rémi Denis-Courmont <rdenis@simphalempin.com>
git-committer:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1212230578 +0300
git-parent:

[792c8ca37fbac2707af4eb695f231c3d70284a92]

git-author:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1212230578 +0300
Message:

Remove bogus old code in tree dump.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/objects.c

    r792c8ca r1993aa3  
    10391039                p_object = vlc_object_get( i_id ); 
    10401040            else 
    1041             { 
    10421041                /* try using the object's name to find it */ 
    1043                 vlc_object_t *p_libvlc = vlc_object_get( 1 ); 
    1044                 if( p_libvlc ) 
    1045                 { 
    1046                     /* Look in p_libvlc's children tree */ 
    1047                     p_object = vlc_object_find_name( p_libvlc, 
    1048                                                      newval.psz_string, 
    1049                                                      FIND_CHILD ); 
    1050                     vlc_object_release( p_libvlc ); 
    1051                 } 
    1052                 if( !p_object ) 
    1053                 { 
    1054                     /* If it's not in libvlc, look in libvlc_global (== p_this) */ 
    1055                     p_object = vlc_object_find_name( p_this, 
    1056                                                      newval.psz_string, 
    1057                                                      FIND_CHILD ); 
    1058                 } 
    1059             } 
     1042                p_object = vlc_object_find_name( p_this, newval.psz_string, 
     1043                                                 FIND_ANYWHERE ); 
    10601044 
    10611045            if( !p_object )