Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC Browser Plugins
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
VideoLAN
VLC Browser Plugins
Commits
14f182e7
Commit
14f182e7
authored
Jan 14, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ActiveX: fix Warnings
parent
1a9d1cf7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
common/vlc_player.cpp
common/vlc_player.cpp
+1
-1
common/win32_fullscreen.cpp
common/win32_fullscreen.cpp
+1
-1
No files found.
common/vlc_player.cpp
View file @
14f182e7
...
...
@@ -22,7 +22,7 @@
#include "vlc_player.h"
vlc_player
::
vlc_player
()
:
_libvlc_instance
(
0
),
_m
l
(
0
),
_mp
(
0
),
_ml_p
(
0
)
:
_libvlc_instance
(
0
),
_m
p
(
0
),
_ml
(
0
),
_ml_p
(
0
)
{
}
...
...
common/win32_fullscreen.cpp
View file @
14f182e7
...
...
@@ -511,7 +511,7 @@ void VLCControlsWnd::SyncVolumeSliderWithVLCVolume()
vlc_player
&
vp
=
*
VP
();
unsigned
int
vol
=
vp
.
get_volume
();
const
LRESULT
SliderPos
=
SendMessage
(
hVolumeSlider
,
(
UINT
)
TBM_GETPOS
,
0
,
0
);
if
(
SliderPos
!=
vol
)
if
(
(
UINT
)
SliderPos
!=
vol
)
SendMessage
(
hVolumeSlider
,
(
UINT
)
TBM_SETPOS
,
(
WPARAM
)
TRUE
,
(
LPARAM
)
vol
);
bool
muted
=
vp
.
is_muted
();
...
...
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