mirror of
https://github.com/videolan/vlc.git
synced 2025-01-27 01:56:19 +08:00
* modules/gui/wxwindows/fileinfo.cpp: partially fixed char encoding problem in fileinfo dialog.
This commit is contained in:
parent
8b6f120569
commit
ca9c15af3f
@ -122,13 +122,13 @@ void FileInfo::UpdateFileInfo()
|
||||
info_category_t *p_cat = p_input->input.p_item->pp_categories[i];
|
||||
|
||||
wxTreeItemId cat = fileinfo_tree->AppendItem( fileinfo_root,
|
||||
wxL2U(p_cat->psz_name) );
|
||||
wxU(p_cat->psz_name) );
|
||||
for( int j = 0; j < p_cat->i_infos; j++ )
|
||||
{
|
||||
info_t *p_info = p_cat->pp_infos[j];
|
||||
|
||||
fileinfo_tree->AppendItem( cat, (wxString)wxL2U(p_info->psz_name) +
|
||||
wxT(": ") + wxL2U(p_info->psz_value) );
|
||||
fileinfo_tree->AppendItem( cat, (wxString)wxU(p_info->psz_name) +
|
||||
wxT(": ") + wxU(p_info->psz_value) );
|
||||
}
|
||||
fileinfo_tree->Expand( cat );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user