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
922f1c07
Commit
922f1c07
authored
May 14, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use var_GetInteger()
parent
81d02d8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+4
-5
No files found.
modules/gui/qt4/input_manager.cpp
View file @
922f1c07
...
...
@@ -395,12 +395,11 @@ void InputManager::UpdateNavigation()
void
InputManager
::
UpdateStatus
()
{
/* Update playing status */
vlc_value_t
val
;
val
.
i_int
=
0
;
var_Get
(
p_input
,
"state"
,
&
val
);
if
(
i_old_playing_status
!=
val
.
i_int
)
int
state
=
var_GetInteger
(
p_input
,
"state"
);
if
(
i_old_playing_status
!=
state
)
{
i_old_playing_status
=
val
.
i_int
;
emit
statusChanged
(
val
.
i_int
);
i_old_playing_status
=
state
;
emit
statusChanged
(
state
);
}
}
...
...
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