Nikolay Sivov : comctl32/combo: Remove redundant argument from border painting helper.

Alexandre Julliard julliard at winehq.org
Thu Nov 28 16:02:20 CST 2019


Module: wine
Branch: master
Commit: a1d7dc23151318d033d5fa803e66a90a0e5d5100
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a1d7dc23151318d033d5fa803e66a90a0e5d5100

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Nov 28 09:06:35 2019 +0300

comctl32/combo: Remove redundant argument from border painting helper.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/comctl32/combo.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dlls/comctl32/combo.c b/dlls/comctl32/combo.c
index 827da37c0c..a82118bc07 100644
--- a/dlls/comctl32/combo.c
+++ b/dlls/comctl32/combo.c
@@ -736,16 +736,13 @@ static void CBPaintText(HEADCOMBO *lphc, HDC hdc_paint)
 /***********************************************************************
  *           CBPaintBorder
  */
-static void CBPaintBorder(
-  HWND            hwnd,
-  const HEADCOMBO *lphc,
-  HDC             hdc)
+static void CBPaintBorder(const HEADCOMBO *lphc, HDC hdc)
 {
   RECT clientRect;
 
   if (CB_GETTYPE(lphc) != CBS_SIMPLE)
   {
-    GetClientRect(hwnd, &clientRect);
+    GetClientRect(lphc->self, &clientRect);
   }
   else
   {
@@ -816,7 +813,7 @@ static LRESULT COMBO_Paint(HEADCOMBO *lphc, HDC hdc)
     /*
      * In non 3.1 look, there is a sunken border on the combobox
      */
-    CBPaintBorder(lphc->self, lphc, hdc);
+    CBPaintBorder(lphc, hdc);
 
     CBPaintButton(lphc, hdc);
 




More information about the wine-cvs mailing list