msi: Make insertion order of line controls consistent with other controls.

Fixes: 2c5bd49297
This commit is contained in:
Jinoh Kang 2023-07-13 22:32:16 +09:00 committed by Alexandre Julliard
parent 735584076e
commit 3eceda2f2a

View file

@ -1190,7 +1190,7 @@ static UINT dialog_line_control( msi_dialog *dialog, MSIRECORD *rec )
return ERROR_OUTOFMEMORY;
lstrcpyW( control->name, name );
list_add_head( &dialog->controls, &control->entry );
list_add_tail( &dialog->controls, &control->entry );
control->handler = NULL;
control->update = NULL;
control->property = NULL;