Sending EN_UPDATE notification in the EDIT_WM_SetText - the comment

already says, that the message is sent, but it is not...
This commit is contained in:
Rizsanyi Zsolt 2002-04-11 17:30:22 +00:00 committed by Alexandre Julliard
parent 1c2fa97e1b
commit 83d6efb761
1 changed files with 3 additions and 0 deletions
controls

View File

@ -4727,7 +4727,10 @@ static void EDIT_WM_SetText(HWND hwnd, EDITSTATE *es, LPARAM lParam, BOOL unicod
* if it is multiline, or it is part of combobox
*/
if( !((es->style & ES_MULTILINE) || es->hwndListBox))
{
EDIT_NOTIFY_PARENT(hwnd, es, EN_CHANGE, "EN_CHANGE");
EDIT_NOTIFY_PARENT(hwnd, es, EN_UPDATE, "EN_UPDATE");
}
EDIT_EM_ScrollCaret(hwnd, es);
}