Commit 0175513e authored by Jean-Paul Saman's avatar Jean-Paul Saman

Remove more excess whitespace

parent 2fdd4de2
...@@ -836,7 +836,7 @@ STDMETHODIMP VLCControl::playlistClear(void) ...@@ -836,7 +836,7 @@ STDMETHODIMP VLCControl::playlistClear(void)
} }
return result; return result;
}; };
STDMETHODIMP VLCControl::get_VersionInfo(BSTR *version) STDMETHODIMP VLCControl::get_VersionInfo(BSTR *version)
{ {
if( NULL == version ) if( NULL == version )
...@@ -846,7 +846,6 @@ STDMETHODIMP VLCControl::get_VersionInfo(BSTR *version) ...@@ -846,7 +846,6 @@ STDMETHODIMP VLCControl::get_VersionInfo(BSTR *version)
if( NULL != versionStr ) if( NULL != versionStr )
{ {
*version = BSTRFromCStr(_p_instance->getCodePage(), versionStr); *version = BSTRFromCStr(_p_instance->getCodePage(), versionStr);
return NULL == *version ? E_OUTOFMEMORY : NOERROR; return NULL == *version ? E_OUTOFMEMORY : NOERROR;
} }
*version = NULL; *version = NULL;
......
...@@ -1331,7 +1331,7 @@ STDMETHODIMP VLCControl2::get_StartTime(int *seconds) ...@@ -1331,7 +1331,7 @@ STDMETHODIMP VLCControl2::get_StartTime(int *seconds)
return S_OK; return S_OK;
}; };
STDMETHODIMP VLCControl2::put_StartTime(int seconds) STDMETHODIMP VLCControl2::put_StartTime(int seconds)
{ {
_p_instance->setStartTime(seconds); _p_instance->setStartTime(seconds);
...@@ -1354,7 +1354,7 @@ STDMETHODIMP VLCControl2::get_VersionInfo(BSTR *version) ...@@ -1354,7 +1354,7 @@ STDMETHODIMP VLCControl2::get_VersionInfo(BSTR *version)
*version = NULL; *version = NULL;
return E_FAIL; return E_FAIL;
}; };
STDMETHODIMP VLCControl2::get_Visible(VARIANT_BOOL *isVisible) STDMETHODIMP VLCControl2::get_Visible(VARIANT_BOOL *isVisible)
{ {
if( NULL == isVisible ) if( NULL == isVisible )
...@@ -1380,7 +1380,7 @@ STDMETHODIMP VLCControl2::get_Volume(int *volume) ...@@ -1380,7 +1380,7 @@ STDMETHODIMP VLCControl2::get_Volume(int *volume)
*volume = _p_instance->getVolume(); *volume = _p_instance->getVolume();
return NOERROR; return NOERROR;
}; };
STDMETHODIMP VLCControl2::put_Volume(int volume) STDMETHODIMP VLCControl2::put_Volume(int volume)
{ {
_p_instance->setVolume(volume); _p_instance->setVolume(volume);
...@@ -1442,4 +1442,3 @@ STDMETHODIMP VLCControl2::get_video(IVLCVideo** obj) ...@@ -1442,4 +1442,3 @@ STDMETHODIMP VLCControl2::get_video(IVLCVideo** obj)
} }
return E_OUTOFMEMORY; return E_OUTOFMEMORY;
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment