Changeset 6e3263c3d6fe0e9bfed279f8e10fca0d20df10a6
- Timestamp:
- 17/08/07 02:23:49
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1187310229 +0000
- git-parent:
[cfb432c95dce13d9f635c632be6ecab12138d14a]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1187310229 +0000
- Message:
control/media_list.c: Fix a typo about subitems.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r866dd6d |
r6e3263c |
|
| 131 | 131 | libvlc_event_attach( p_md->p_event_manager, |
|---|
| 132 | 132 | libvlc_MediaDescriptorSubItemAdded, |
|---|
| 133 | | media_descriptor_changed, |
|---|
| | 133 | media_descriptor_subitem_added, |
|---|
| 134 | 134 | p_mlist, NULL ); |
|---|
| 135 | 135 | } |
|---|
| … | … | |
| 150 | 150 | libvlc_event_detach( p_md->p_event_manager, |
|---|
| 151 | 151 | libvlc_MediaDescriptorSubItemAdded, |
|---|
| 152 | | media_descriptor_changed, |
|---|
| | 152 | media_descriptor_subitem_added, |
|---|
| 153 | 153 | p_mlist, NULL ); |
|---|
| 154 | 154 | } |
|---|
| … | … | |
| 527 | 527 | return p_submlist; |
|---|
| 528 | 528 | } |
|---|
| 529 | | |
|---|