Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
b7499db1
Commit
b7499db1
authored
Aug 18, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wx: compile fix
parent
af96053d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/gui/wxwidgets/dialogs/infopanels.cpp
modules/gui/wxwidgets/dialogs/infopanels.cpp
+2
-1
No files found.
modules/gui/wxwidgets/dialogs/infopanels.cpp
View file @
b7499db1
...
@@ -119,9 +119,10 @@ void MetaDataPanel::Update( input_item_t *p_item )
...
@@ -119,9 +119,10 @@ void MetaDataPanel::Update( input_item_t *p_item )
uri_text
->
SetValue
(
wxU
(
p_item
->
psz_uri
)
);
uri_text
->
SetValue
(
wxU
(
p_item
->
psz_uri
)
);
name_text
->
SetValue
(
wxU
(
p_item
->
psz_name
)
);
name_text
->
SetValue
(
wxU
(
p_item
->
psz_name
)
);
char
*
psz_meta
;
#define UPDATE_META( meta, widget ) { \
#define UPDATE_META( meta, widget ) { \
char *
psz_meta = input_item_Get##meta( p_item ); \
psz_meta = input_item_Get##meta( p_item ); \
if( psz_meta != NULL && *psz_meta) \
if( psz_meta != NULL && *psz_meta) \
{ \
{ \
widget->SetLabel( wxU( psz_meta ) ); \
widget->SetLabel( wxU( psz_meta ) ); \
...
...
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