Commit 3eceda2f authored by Jinoh Kang's avatar Jinoh Kang Committed by Alexandre Julliard

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

Fixes: 2c5bd492
parent 73558407
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment