Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
29b8c35b
Commit
29b8c35b
authored
Jan 07, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jan 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Factor in EDIT_WM_EraseBkGnd().
parent
41575621
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
edit.c
dlls/user32/edit.c
+2
-14
No files found.
dlls/user32/edit.c
View file @
29b8c35b
...
...
@@ -263,7 +263,6 @@ static void EDIT_WM_ContextMenu(EDITSTATE *es, INT x, INT y);
static
void
EDIT_WM_Copy
(
EDITSTATE
*
es
);
static
LRESULT
EDIT_WM_Create
(
EDITSTATE
*
es
,
LPCWSTR
name
);
static
LRESULT
EDIT_WM_Destroy
(
EDITSTATE
*
es
);
static
LRESULT
EDIT_WM_EraseBkGnd
(
EDITSTATE
*
es
,
HDC
dc
);
static
INT
EDIT_WM_GetText
(
const
EDITSTATE
*
es
,
INT
count
,
LPWSTR
dst
,
BOOL
unicode
);
static
LRESULT
EDIT_WM_HScroll
(
EDITSTATE
*
es
,
INT
action
,
INT
pos
);
static
LRESULT
EDIT_WM_KeyDown
(
EDITSTATE
*
es
,
INT
key
);
...
...
@@ -893,7 +892,8 @@ static LRESULT WINAPI EditWndProc_common( HWND hwnd, UINT msg,
break
;
case
WM_ERASEBKGND
:
result
=
EDIT_WM_EraseBkGnd
(
es
,
(
HDC
)
wParam
);
/* we do the proper erase in EDIT_WM_Paint */
result
=
1
;
break
;
case
WM_GETFONT
:
...
...
@@ -4260,18 +4260,6 @@ static LRESULT EDIT_WM_Destroy(EDITSTATE *es)
/*********************************************************************
*
* WM_ERASEBKGND
*
*/
static
LRESULT
EDIT_WM_EraseBkGnd
(
EDITSTATE
*
es
,
HDC
dc
)
{
/* we do the proper erase in EDIT_WM_Paint */
return
1
;
}
/*********************************************************************
*
* WM_GETTEXT
*
*/
...
...
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