Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
ca9c15af
Commit
ca9c15af
authored
Jul 26, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/fileinfo.cpp: partially fixed char encoding problem in fileinfo dialog.
parent
8b6f1205
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/wxwindows/fileinfo.cpp
modules/gui/wxwindows/fileinfo.cpp
+3
-3
No files found.
modules/gui/wxwindows/fileinfo.cpp
View file @
ca9c15af
...
...
@@ -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
,
wx
L2
U
(
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
)
wx
L2
U
(
p_info
->
psz_name
)
+
wxT
(
": "
)
+
wx
L2
U
(
p_info
->
psz_value
)
);
fileinfo_tree
->
AppendItem
(
cat
,
(
wxString
)
wxU
(
p_info
->
psz_name
)
+
wxT
(
": "
)
+
wxU
(
p_info
->
psz_value
)
);
}
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