Cancel pending notifications when EM_SETMODIFY is called.

oldstable
Gerard Patel 1999-07-03 15:47:50 +00:00 committed by Alexandre Julliard
parent 124b61904f
commit 40ed511c86
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ LRESULT WINAPI EditWndProc( HWND hwnd, UINT msg,
if (wParam)
es->flags |= EF_MODIFIED;
else
es->flags &= ~EF_MODIFIED;
es->flags &= ~(EF_MODIFIED | EF_UPDATE); /* reset pending updates */
break;
case EM_GETLINECOUNT16: