]> git.sesse.net Git - vlc/commitdiff
Remove trailing spaces.
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 25 Jul 2009 13:51:14 +0000 (15:51 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 25 Jul 2009 13:54:07 +0000 (15:54 +0200)
modules/gui/qt4/components/preferences_widgets.hpp
modules/gui/qt4/components/vistaassoc.h
modules/video_output/msw/direct3d.c
modules/video_output/msw/directx.c
modules/video_output/msw/events.c

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