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
d2b84199
Commit
d2b84199
authored
Dec 21, 2007
by
Jean-Baptiste Kempf
Browse files
Qt4 - Fix an 'assertion failed' when opening the media information witout an input.
parent
3a3b9f86
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
d2b84199
...
...
@@ -89,8 +89,10 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
CONNECT
(
IT
,
currentChanged
(
int
),
this
,
updateButtons
(
int
)
);
CONNECT
(
THEMIM
,
inputChanged
(
input_thread_t
*
),
this
,
update
(
input_thread_t
*
)
);
/* Call update by hand, so info is shown from current item too */
update
(
input_GetItem
(
THEMIM
->
getInput
()),
true
,
true
);
if
(
THEMIM
->
getInput
()
)
update
(
input_GetItem
(
THEMIM
->
getInput
()),
true
,
true
);
}
MediaInfoDialog
::~
MediaInfoDialog
()
...
...
Write
Preview
Supports
Markdown
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