Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a1d7dc23
Commit
a1d7dc23
authored
Nov 28, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/combo: Remove redundant argument from border painting helper.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d0f9e5e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
combo.c
dlls/comctl32/combo.c
+3
-6
No files found.
dlls/comctl32/combo.c
View file @
a1d7dc23
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment