Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
4e4b362e
Commit
4e4b362e
authored
Jun 24, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not try to read metadata if it's not present
parent
79462a4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/components/infopanels.cpp
+5
-1
No files found.
modules/gui/qt4/components/infopanels.cpp
View file @
4e4b362e
...
...
@@ -190,7 +190,9 @@ void MetaPanel::saveMeta()
**/
void
MetaPanel
::
update
(
input_item_t
*
p_item
)
{
char
*
psz_meta
;
if
(
!
p_item
->
p_meta
)
return
;
char
*
psz_meta
;
#define UPDATE_META( meta, widget ) { \
psz_meta = p_item->p_meta->psz_##meta; \
if( !EMPTY_STR( psz_meta ) ) \
...
...
@@ -284,6 +286,8 @@ ExtraMetaPanel::ExtraMetaPanel( QWidget *parent,
void
ExtraMetaPanel
::
update
(
input_item_t
*
p_item
)
{
vlc_meta_t
*
p_meta
=
p_item
->
p_meta
;
if
(
!
p_meta
)
return
;
QStringList
tempItem
;
QList
<
QTreeWidgetItem
*>
items
;
...
...
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