Don't change the UI level during ExecuteAction.

oldstable
Mike McCormack 2005-10-29 11:40:03 +00:00 committed by Alexandre Julliard
parent 13fee293ba
commit 991bae1409
1 changed files with 0 additions and 7 deletions

View File

@ -3803,17 +3803,10 @@ end:
static UINT ACTION_ExecuteAction(MSIPACKAGE *package)
{
static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0};
static const WCHAR szTwo[] = {'2',0};
UINT rc;
LPWSTR level;
level = msi_dup_property( package, szUILevel );
MSI_SetPropertyW(package,szUILevel,szTwo);
package->script->InWhatSequence |= SEQUENCE_EXEC;
rc = ACTION_ProcessExecSequence(package,FALSE);
MSI_SetPropertyW(package,szUILevel,level);
msi_free(level);
return rc;
}