msi: Set the action taken in the ProcessComponents and InstallFiles actions.

This commit is contained in:
Hans Leidekker 2010-03-23 11:46:24 +01:00 committed by Alexandre Julliard
parent 8722d0c44a
commit 27e90274b5
2 changed files with 3 additions and 0 deletions

View File

@ -2993,6 +2993,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
else
MSIREG_DeleteUserDataComponentKey(comp->ComponentId, NULL);
}
comp->Action = comp->ActionRequest;
/* UI stuff */
uirow = MSI_CreateRecord(3);

View File

@ -98,6 +98,8 @@ static void schedule_install_files(MSIPACKAGE *package)
ui_progress(package,2,file->FileSize,0,0);
file->state = msifs_skipped;
}
else
file->Component->Action = INSTALLSTATE_LOCAL;
}
}