Changeset 1993aa3c29ccd1daf22cd5925e218b34afa52a1c
- 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
| r792c8ca |
r1993aa3 |
|
| 1039 | 1039 | p_object = vlc_object_get( i_id ); |
|---|
| 1040 | 1040 | else |
|---|
| 1041 | | { |
|---|
| 1042 | 1041 | /* 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 ); |
|---|
| 1060 | 1044 | |
|---|
| 1061 | 1045 | if( !p_object ) |
|---|