Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
ca9c15af
Commit
ca9c15af
authored
Jul 26, 2004
by
gbazin
Browse files
* modules/gui/wxwindows/fileinfo.cpp: partially fixed char encoding problem in fileinfo dialog.
parent
8b6f1205
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/wxwindows/fileinfo.cpp
View file @
ca9c15af
...
@@ -122,13 +122,13 @@ void FileInfo::UpdateFileInfo()
...
@@ -122,13 +122,13 @@ void FileInfo::UpdateFileInfo()
info_category_t
*
p_cat
=
p_input
->
input
.
p_item
->
pp_categories
[
i
];
info_category_t
*
p_cat
=
p_input
->
input
.
p_item
->
pp_categories
[
i
];
wxTreeItemId
cat
=
fileinfo_tree
->
AppendItem
(
fileinfo_root
,
wxTreeItemId
cat
=
fileinfo_tree
->
AppendItem
(
fileinfo_root
,
wx
L2
U
(
p_cat
->
psz_name
)
);
wxU
(
p_cat
->
psz_name
)
);
for
(
int
j
=
0
;
j
<
p_cat
->
i_infos
;
j
++
)
for
(
int
j
=
0
;
j
<
p_cat
->
i_infos
;
j
++
)
{
{
info_t
*
p_info
=
p_cat
->
pp_infos
[
j
];
info_t
*
p_info
=
p_cat
->
pp_infos
[
j
];
fileinfo_tree
->
AppendItem
(
cat
,
(
wxString
)
wx
L2
U
(
p_info
->
psz_name
)
+
fileinfo_tree
->
AppendItem
(
cat
,
(
wxString
)
wxU
(
p_info
->
psz_name
)
+
wxT
(
": "
)
+
wx
L2
U
(
p_info
->
psz_value
)
);
wxT
(
": "
)
+
wxU
(
p_info
->
psz_value
)
);
}
}
fileinfo_tree
->
Expand
(
cat
);
fileinfo_tree
->
Expand
(
cat
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment