Commit 3220b6ce authored by Geoffroy Couprie's avatar Geoffroy Couprie

WinCE intf: LVITEM needs an index

parent 465ce16e
...@@ -631,6 +631,8 @@ void Playlist::Rebuild() ...@@ -631,6 +631,8 @@ void Playlist::Rebuild()
playlist_item_t * p_root = p_playlist->p_local_onelevel; playlist_item_t * p_root = p_playlist->p_local_onelevel;
playlist_item_t * p_child = NULL; playlist_item_t * p_child = NULL;
int iItem = 0;
while( ( p_child = playlist_GetNextLeaf( p_playlist, p_root, p_child, FALSE, FALSE ) ) ) while( ( p_child = playlist_GetNextLeaf( p_playlist, p_root, p_child, FALSE, FALSE ) ) )
{ {
LVITEM lv; LVITEM lv;
...@@ -638,12 +640,13 @@ void Playlist::Rebuild() ...@@ -638,12 +640,13 @@ void Playlist::Rebuild()
lv.pszText = _T(""); lv.pszText = _T("");
lv.cchTextMax = 1; lv.cchTextMax = 1;
lv.iSubItem = 0; lv.iSubItem = 0;
lv.iItem = i; lv.iItem = iItem;
ListView_InsertItem( hListView, &lv ); ListView_InsertItem( hListView, &lv );
ListView_SetItemText( hListView, lv.iItem, 0, ListView_SetItemText( hListView, lv.iItem, 0,
_FROMMB(p_child->p_input->psz_name) ); _FROMMB(p_child->p_input->psz_name) );
UpdateItem( p_child->i_id ); UpdateItem( p_child->i_id );
iItem++;
} }
PL_UNLOCK; PL_UNLOCK;
......
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