From 7c7f0bb2c18b23003bd7c63cb9e8b9ab90cf9cec Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Wed, 19 Jul 2006 11:15:37 -0700 Subject: [PATCH] msi: Rename SetFeatureStates to match the naming scheme of internal msi functions. --- dlls/msi/action.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 66ff965230d..d6ca5d7f7e9 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -1590,7 +1590,7 @@ static BOOL process_state_property (MSIPACKAGE* package, LPCWSTR property, return TRUE; } -static UINT SetFeatureStates(MSIPACKAGE *package) +static UINT MSI_SetFeatureStates(MSIPACKAGE *package) { int install_level; static const WCHAR szlevel[] = @@ -1935,7 +1935,7 @@ static UINT ACTION_CostFinalize(MSIPACKAGE *package) ACTION_UpdateInstallStates(package); - return SetFeatureStates(package); + return MSI_SetFeatureStates(package); } /* OK this value is "interpreted" and then formatted based on the -- 2.11.4.GIT