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
328a3f1d
Commit
328a3f1d
authored
Jul 28, 2010
by
Dylan Smith
Committed by
Alexandre Julliard
Jul 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
richedit: EN_UPDATE notification is sent on WM_PAINT.
parent
d992bab7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
editor.c
dlls/riched20/editor.c
+2
-0
paint.c
dlls/riched20/paint.c
+0
-2
No files found.
dlls/riched20/editor.c
View file @
328a3f1d
...
...
@@ -4421,6 +4421,8 @@ static LRESULT RichEditWndProc_common(HWND hWnd, UINT msg, WPARAM wParam,
PAINTSTRUCT
ps
;
hDC
=
BeginPaint
(
editor
->
hWnd
,
&
ps
);
if
(
!
editor
->
bEmulateVersion10
||
(
editor
->
nEventMask
&
ENM_UPDATE
))
ME_SendOldNotify
(
editor
,
EN_UPDATE
);
/* Erase area outside of the formatting rectangle */
if
(
ps
.
rcPaint
.
top
<
editor
->
rcFormat
.
top
)
{
...
...
dlls/riched20/paint.c
View file @
328a3f1d
...
...
@@ -129,8 +129,6 @@ void ME_Repaint(ME_TextEditor *editor)
ME_UpdateScrollBar
(
editor
);
FIXME
(
"ME_Repaint had to call ME_WrapMarkedParagraphs
\n
"
);
}
if
(
!
editor
->
bEmulateVersion10
||
(
editor
->
nEventMask
&
ENM_UPDATE
))
ME_SendOldNotify
(
editor
,
EN_UPDATE
);
ITextHost_TxViewChange
(
editor
->
texthost
,
TRUE
);
}
...
...
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