Commit 6999a042 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Set the Preselected property if appropriate (relevant to

MigrateFeatureStates when implemented).
parent 6957e4a0
......@@ -2457,6 +2457,14 @@ static UINT SetFeatureStates(MSIPACKAGE *package)
}
}
}
else
{
/* set the Preselected Property */
static const WCHAR szPreselected[] = {'P','r','e','s','e','l','e','c','t','e','d',0};
static const WCHAR szOne[] = { '1', 0 };
MSI_SetPropertyW(package,szPreselected,szOne);
}
/*
* now we want to enable or disable components base on feature
......
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