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
0175513e
Commit
0175513e
authored
Oct 29, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove more excess whitespace
parent
2fdd4de2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
activex/vlccontrol.cpp
activex/vlccontrol.cpp
+1
-2
activex/vlccontrol2.cpp
activex/vlccontrol2.cpp
+3
-4
No files found.
activex/vlccontrol.cpp
View file @
0175513e
...
...
@@ -836,7 +836,7 @@ STDMETHODIMP VLCControl::playlistClear(void)
}
return
result
;
};
STDMETHODIMP
VLCControl
::
get_VersionInfo
(
BSTR
*
version
)
{
if
(
NULL
==
version
)
...
...
@@ -846,7 +846,6 @@ STDMETHODIMP VLCControl::get_VersionInfo(BSTR *version)
if
(
NULL
!=
versionStr
)
{
*
version
=
BSTRFromCStr
(
_p_instance
->
getCodePage
(),
versionStr
);
return
NULL
==
*
version
?
E_OUTOFMEMORY
:
NOERROR
;
}
*
version
=
NULL
;
...
...
activex/vlccontrol2.cpp
View file @
0175513e
...
...
@@ -1331,7 +1331,7 @@ STDMETHODIMP VLCControl2::get_StartTime(int *seconds)
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
put_StartTime
(
int
seconds
)
{
_p_instance
->
setStartTime
(
seconds
);
...
...
@@ -1354,7 +1354,7 @@ STDMETHODIMP VLCControl2::get_VersionInfo(BSTR *version)
*
version
=
NULL
;
return
E_FAIL
;
};
STDMETHODIMP
VLCControl2
::
get_Visible
(
VARIANT_BOOL
*
isVisible
)
{
if
(
NULL
==
isVisible
)
...
...
@@ -1380,7 +1380,7 @@ STDMETHODIMP VLCControl2::get_Volume(int *volume)
*
volume
=
_p_instance
->
getVolume
();
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
put_Volume
(
int
volume
)
{
_p_instance
->
setVolume
(
volume
);
...
...
@@ -1442,4 +1442,3 @@ STDMETHODIMP VLCControl2::get_video(IVLCVideo** obj)
}
return
E_OUTOFMEMORY
;
};
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