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
f2c8101b
Commit
f2c8101b
authored
Oct 06, 2009
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mozilla: fix compilation after [
1979486d
]
parent
f556fb16
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
projects/mozilla/control/npolibvlc.cpp
projects/mozilla/control/npolibvlc.cpp
+1
-2
projects/mozilla/vlcshell.cpp
projects/mozilla/vlcshell.cpp
+1
-2
No files found.
projects/mozilla/control/npolibvlc.cpp
View file @
f2c8101b
...
...
@@ -218,8 +218,7 @@ LibvlcAudioNPObject::getProperty(int index, NPVariant &result)
{
case
ID_audio_mute
:
{
bool
muted
=
libvlc_audio_get_mute
(
p_plugin
->
getVLC
(),
&
ex
);
RETURN_ON_EXCEPTION
(
this
,
ex
);
bool
muted
=
libvlc_audio_get_mute
(
p_plugin
->
getVLC
());
BOOLEAN_TO_NPVARIANT
(
muted
,
result
);
return
INVOKERESULT_NO_ERROR
;
}
...
...
projects/mozilla/vlcshell.cpp
View file @
f2c8101b
...
...
@@ -855,8 +855,7 @@ static void ControlHandler( Widget w, XtPointer closure, XEvent *event )
case
clicked_Mute
:
case
clicked_Unmute
:
{
libvlc_audio_toggle_mute
(
p_plugin
->
getVLC
(),
&
ex
);
libvlc_exception_clear
(
&
ex
);
libvlc_audio_toggle_mute
(
p_plugin
->
getVLC
()
);
}
break
;
...
...
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