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)
}
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;
......
......@@ -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;
};
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