[FORMATTING] Remove trailing whitespace. Addendum to 34593d93.
[reactos.git] / dll / win32 / shell32 / shellmenu / CMenuDeskBar.cpp
index 2b0777d..02e8717 100644 (file)
@@ -203,7 +203,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::SetClient(IUnknown *punkClient)
             return hr;
 
         pDeskBandClient->SetDeskBarSite(NULL);
-        
+
         pDeskBandClient = NULL;
         m_Client = NULL;
     }
@@ -284,7 +284,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::GetSite(REFIID riid, void **ppvSite)
 
 static void AdjustForExcludeArea(BOOL alignLeft, BOOL alignTop, BOOL preferVertical, PINT px, PINT py, INT cx, INT cy, RECTL rcExclude) {
     RECT rcWindow = { *px, *py, *px + cx, *py + cy };
-    
+
     if (rcWindow.right > rcExclude.left && rcWindow.left < rcExclude.right &&
         rcWindow.bottom > rcExclude.top && rcWindow.top < rcExclude.bottom)
     {
@@ -419,7 +419,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::Popup(POINTL *ppt, RECTL *prcExclude, MP
         AdjustForExcludeArea(alignLeft, alignTop, preferVertical, &x, &y, cx, cy, *prcExclude);
 
     // Verify that it doesn't escape the work area, and flip.
-    if (alignLeft) 
+    if (alignLeft)
     {
         if (x < rcWorkArea.left && (ppt->x+cx) <= rcWorkArea.right)
         {
@@ -813,7 +813,7 @@ LRESULT CMenuDeskBar::_OnWinIniChange(UINT uMsg, WPARAM wParam, LPARAM lParam, B
 
 LRESULT CMenuDeskBar::_OnNcPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled)
 {
-    /* If it is a flat style menu we need to handle WM_NCPAINT 
+    /* If it is a flat style menu we need to handle WM_NCPAINT
      * and paint the border with the right colour */
     if ((GetStyle() & WS_BORDER) == 0)
     {