msi: Spelling fixes.

This commit is contained in:
Austin English 2008-04-07 14:44:23 -05:00 committed by Alexandre Julliard
parent 828ac88f24
commit 5644f05edf
8 changed files with 13 additions and 13 deletions

View file

@ -2767,7 +2767,7 @@ static void ACTION_RefCountComponent( MSIPACKAGE* package, MSICOMPONENT *comp )
}
}
/* add a count for permenent */
/* add a count for permanent */
if (comp->Attributes & msidbComponentAttributesPermanent)
count ++;
@ -2826,7 +2826,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
comp->RefCount);
/*
* Write the keypath out if the component is to be registered
* and delete the key if the component is to be deregistered
* and delete the key if the component is to be unregistered
*/
if (ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL))
{
@ -3101,7 +3101,7 @@ static UINT ITERATE_CreateShortcuts(MSIRECORD *row, LPVOID param)
buffer = MSI_RecordGetString(row,2);
target_folder = resolve_folder(package, buffer,FALSE,FALSE,TRUE,NULL);
/* may be needed because of a bug somehwere else */
/* may be needed because of a bug somewhere else */
create_full_pathW(target_folder);
filename = msi_dup_record_field( row, 3 );

View file

@ -19,7 +19,7 @@
*/
/*
* Here are helper functions formally in action.c that are used by a variaty of
* Here are helper functions formally in action.c that are used by a variety of
* actions and functions.
*/
@ -885,7 +885,7 @@ LPWSTR create_component_advertise_string(MSIPACKAGE* package,
return output;
}
/* update compoennt state based on a feature change */
/* update component state based on a feature change */
void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature)
{
INSTALLSTATE newstate;

View file

@ -1066,7 +1066,7 @@ UINT WINAPI MsiGetProductInfoExW(LPCWSTR szProductCode, LPCWSTR szUserSid,
if (!prod && !classes)
goto done;
/* FIME */
/* FIXME */
val = strdupW(empty);
r = msi_copy_outval(val, szValue, pcchValue);
}

View file

@ -2274,7 +2274,7 @@ static UINT set_summary_info(MSIHANDLE hdb)
UINT res;
MSIHANDLE suminfo;
/* build summmary info */
/* build summary info */
res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );

View file

@ -205,7 +205,7 @@ static UINT set_summary_info(MSIHANDLE hdb)
UINT res;
MSIHANDLE suminfo;
/* build summmary info */
/* build summary info */
res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );
@ -318,7 +318,7 @@ static MSIHANDLE helper_createpackage( const char *szName )
res = MsiDatabaseCommit( hdb );
ok( res == ERROR_SUCCESS , "Failed to commit database\n" );
/* build summmary info */
/* build summary info */
res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );

View file

@ -3512,7 +3512,7 @@ static void set_transform_summary_info(void)
UINT r;
MSIHANDLE suminfo = 0;
/* build summmary info */
/* build summary info */
r = MsiGetSummaryInformation(0, mstfile, 3, &suminfo);
todo_wine
{

View file

@ -532,7 +532,7 @@ static UINT set_summary_info(MSIHANDLE hdb)
UINT res;
MSIHANDLE suminfo;
/* build summmary info */
/* build summary info */
res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );

View file

@ -2161,7 +2161,7 @@ static void test_MsiSourceListAddMediaDisk(void)
ok(r == ERROR_INVALID_PARAMETER,
"Expected ERROR_INVALID_PARAMETER, got %d\n", r);
/* update dwDiskId 1, szVolumeLable is NULL */
/* update dwDiskId 1, szVolumeLabel is NULL */
r = pMsiSourceListAddMediaDiskA(prodcode, usersid,
MSIINSTALLCONTEXT_USERUNMANAGED,
MSICODE_PRODUCT, 1, NULL, "provocar");
@ -2172,7 +2172,7 @@ static void test_MsiSourceListAddMediaDisk(void)
CHECK_REG_STR(media, "1", ";provocar");
CHECK_REG_STR(media, "42", "label42;prompt42");
/* update dwDiskId 1, szVolumeLable is empty */
/* update dwDiskId 1, szVolumeLabel is empty */
r = pMsiSourceListAddMediaDiskA(prodcode, usersid,
MSIINSTALLCONTEXT_USERUNMANAGED,
MSICODE_PRODUCT, 1, "", "provoquer");