Commit 5cb2de50 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Remove trailing spaces.

parent eb12915b
...@@ -207,7 +207,7 @@ public: ...@@ -207,7 +207,7 @@ public:
virtual void show() { checkbox->show(); } virtual void show() { checkbox->show(); }
virtual void hide() { checkbox->hide(); } virtual void hide() { checkbox->hide(); }
virtual int getType() { return CONFIG_ITEM_BOOL; } virtual int getType() { return CONFIG_ITEM_BOOL; }
private: private:
QAbstractButton *checkbox; QAbstractButton *checkbox;
void finish(); void finish();
}; };
......
...@@ -59,7 +59,7 @@ typedef GUID IID; ...@@ -59,7 +59,7 @@ typedef GUID IID;
#define REFIID const IID* const #define REFIID const IID* const
extern "C" { extern "C" {
HRESULT WINAPI CoCreateInstance(const GUID *,LPUNKNOWN,DWORD,REFIID,PVOID*); HRESULT WINAPI CoCreateInstance(const GUID *,LPUNKNOWN,DWORD,REFIID,PVOID*);
HRESULT WINAPI CoInitialize(PVOID); HRESULT WINAPI CoInitialize(PVOID);
void WINAPI CoUninitialize(void); void WINAPI CoUninitialize(void);
}; };
......
...@@ -385,7 +385,7 @@ static int Manage( vout_thread_t *p_vout ) ...@@ -385,7 +385,7 @@ static int Manage( vout_thread_t *p_vout )
#endif #endif
p_vout->p_sys->i_changes &= ~DX_POSITION_CHANGE; p_vout->p_sys->i_changes &= ~DX_POSITION_CHANGE;
} }
/* /*
* Desktop mode change * Desktop mode change
*/ */
...@@ -399,7 +399,7 @@ static int Manage( vout_thread_t *p_vout ) ...@@ -399,7 +399,7 @@ static int Manage( vout_thread_t *p_vout )
/* Reset the flag */ /* Reset the flag */
p_vout->p_sys->i_changes &= ~DX_DESKTOP_CHANGE; p_vout->p_sys->i_changes &= ~DX_DESKTOP_CHANGE;
} }
if( p_vout->p_sys->i_changes & EVENT_THREAD_ENDED if( p_vout->p_sys->i_changes & EVENT_THREAD_ENDED
&& p_vout->p_sys->i_changes & SWITCHING_MODE_FLAG ) && p_vout->p_sys->i_changes & SWITCHING_MODE_FLAG )
{ {
...@@ -1323,7 +1323,7 @@ static void Direct3DVoutRenderScene( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -1323,7 +1323,7 @@ static void Direct3DVoutRenderScene( vout_thread_t *p_vout, picture_t *p_pic )
if( p_vout->p_sys->i_changes & SWITCHING_MODE_FLAG ) if( p_vout->p_sys->i_changes & SWITCHING_MODE_FLAG )
return; return;
// check if device is still available // check if device is still available
hr = IDirect3DDevice9_TestCooperativeLevel(p_d3ddev); hr = IDirect3DDevice9_TestCooperativeLevel(p_d3ddev);
if( FAILED(hr) ) if( FAILED(hr) )
......
...@@ -1756,7 +1756,7 @@ static void DirectXGetDDrawCaps( vout_thread_t *p_vout ) ...@@ -1756,7 +1756,7 @@ static void DirectXGetDDrawCaps( vout_thread_t *p_vout )
bAlignSizeSrc = (ddcaps.dwCaps & DDCAPS_ALIGNSIZESRC) ? 1 : 0; bAlignSizeSrc = (ddcaps.dwCaps & DDCAPS_ALIGNSIZESRC) ? 1 : 0;
/* Determine overlay destination size alignment */ /* Determine overlay destination size alignment */
bAlignSizeDest = (ddcaps.dwCaps & DDCAPS_ALIGNSIZEDEST) ? 1 : 0; bAlignSizeDest = (ddcaps.dwCaps & DDCAPS_ALIGNSIZEDEST) ? 1 : 0;
msg_Dbg( p_vout, "DirectDraw Capabilities: overlay=%i yuvoverlay=%i " msg_Dbg( p_vout, "DirectDraw Capabilities: overlay=%i yuvoverlay=%i "
"can_deinterlace_overlay=%i colorkey=%i stretch=%i " "can_deinterlace_overlay=%i colorkey=%i stretch=%i "
"bltfourcc=%i", "bltfourcc=%i",
......
...@@ -385,7 +385,7 @@ void* EventThread( vlc_object_t *p_this ) ...@@ -385,7 +385,7 @@ void* EventThread( vlc_object_t *p_this )
DirectXCloseWindow( p_event->p_vout ); DirectXCloseWindow( p_event->p_vout );
vlc_restorecancel (canc); vlc_restorecancel (canc);
/* clear the changes formerly signaled */ /* clear the changes formerly signaled */
p_event->p_vout->p_sys->i_changes = EVENT_THREAD_ENDED; p_event->p_vout->p_sys->i_changes = EVENT_THREAD_ENDED;
return NULL; return NULL;
......
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