Module: wine
Branch: master
Commit: 92e7fed80cde982772be2b6713693a8ca8ab41b9
URL: http://source.winehq.org/git/wine.git/?a=commit;h=92e7fed80cde982772be2b671…
Author: Austin English <austinenglish(a)gmail.com>
Date: Mon Dec 31 12:06:07 2007 -0600
msi: Fix several typos.
---
dlls/msi/classes.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/msi/classes.c b/dlls/msi/classes.c
index 92c333d..aca7c93 100644
--- a/dlls/msi/classes.c
+++ b/dlls/msi/classes.c
@@ -178,7 +178,7 @@ static MSIPROGID *load_progid( MSIPACKAGE* package, MSIRECORD *row )
while (parent->Parent && parent->Parent != parent)
parent = parent->Parent;
- /* FIXME: need to determing if we are really the CurVer */
+ /* FIXME: need to determine if we are really the CurVer */
progid->CurVer = parent;
parent->VersionInd = progid;
@@ -445,7 +445,7 @@ static MSIEXTENSION *load_extension( MSIPACKAGE* package, MSIRECORD *row )
/*
* While the extension table has 2 primary keys, this function is only looking
- * at the Extension key which is what is referenced as a forign key
+ * at the Extension key which is what is referenced as a foreign key
*/
static MSIEXTENSION *load_given_extension( MSIPACKAGE *package, LPCWSTR name )
{
@@ -512,7 +512,7 @@ static UINT iterate_load_verb(MSIRECORD *row, LPVOID param)
buffer = MSI_RecordGetString(row,5);
deformat_string(package,buffer,&verb->Argument);
- /* assosiate the verb with the correct extension */
+ /* associate the verb with the correct extension */
list_add_tail( &extension->verbs, &verb->entry );
return ERROR_SUCCESS;
@@ -1252,7 +1252,7 @@ UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package)
LPWSTR key;
/*
- * check if the MIME is to be installed. Either as requesed by an
+ * check if the MIME is to be installed. Either as requested by an
* extension or Class
*/
mt->InstallMe = (mt->InstallMe ||
Module: wine
Branch: master
Commit: 74399eec9476418e6778cd38e57aebe9e6a774b1
URL: http://source.winehq.org/git/wine.git/?a=commit;h=74399eec9476418e6778cd38e…
Author: Austin English <austinenglish(a)gmail.com>
Date: Mon Dec 31 11:45:46 2007 -0600
dplayx: Fix a typo.
---
dlls/dplayx/dplayx_queue.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dplayx/dplayx_queue.h b/dlls/dplayx/dplayx_queue.h
index ac94530..cfde9df 100644
--- a/dlls/dplayx/dplayx_queue.h
+++ b/dlls/dplayx/dplayx_queue.h
@@ -122,7 +122,7 @@ do { \
* elm - how to find the next element
* field - to be concatenated to rc to compare with fieldToCompare
* fieldToCompare - The value that we're comparing against
- * compare_cb - Callback to invoke to determine if comparision should continue.
+ * compare_cb - Callback to invoke to determine if comparison should continue.
* Callback must be defined with DPQ_DECL_COMPARECB.
* rc - Variable to put the return code. Same type as (head).lpQHFirst
*/