Jinoh Kang : msi: Make insertion order of line controls consistent with other controls.
Module: wine Branch: master Commit: 3eceda2f2a77754f0bf93ea33018e8ef49e82669 URL: https://gitlab.winehq.org/wine/wine/-/commit/3eceda2f2a77754f0bf93ea33018e8e... Author: Jinoh Kang <jinoh.kang.kr(a)gmail.com> Date: Thu Jul 13 22:32:16 2023 +0900 msi: Make insertion order of line controls consistent with other controls. Fixes: 2c5bd49297f79d9941a256d8ec61e0eb2bf9bf9c --- dlls/msi/dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 061bca9a6c9..11d6af75846 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -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;
participants (1)
-
Alexandre Julliard