Module: wine
Branch: master
Commit: fe935e8d503aba6b29c9b066af51d75e1b4a2da0
URL: http://source.winehq.org/git/wine.git/?a=commit;h=fe935e8d503aba6b29c9b066a…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Oct 8 11:23:19 2009 +0200
Assorted spelling fixes.
---
dlls/comctl32/monthcal.c | 2 +-
dlls/jscript/activex.c | 2 +-
dlls/msi/tests/install.c | 2 +-
dlls/shell32/tests/shlexec.c | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/comctl32/monthcal.c b/dlls/comctl32/monthcal.c
index a44ae31..766dbde 100644
--- a/dlls/comctl32/monthcal.c
+++ b/dlls/comctl32/monthcal.c
@@ -331,7 +331,7 @@ static BOOL MONTHCAL_IsSelRangeValid(const MONTHCAL_INFO *infoPtr,
}
/* Used in MCM_SETRANGE/MCM_SETSELRANGE to determine resulting time part.
- Milliseconds are intentionaly not validated. */
+ Milliseconds are intentionally not validated. */
static BOOL MONTHCAL_ValidateTime(const SYSTEMTIME *time)
{
if((time->wHour > 24) || (time->wMinute > 59) || (time->wSecond > 59))
diff --git a/dlls/jscript/activex.c b/dlls/jscript/activex.c
index 8af4eb7..cb94d4e 100644
--- a/dlls/jscript/activex.c
+++ b/dlls/jscript/activex.c
@@ -156,7 +156,7 @@ static HRESULT ActiveXObject_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flag
}
if(arg_cnt(dp) != 1) {
- FIXME("unsuported arg_cnt %d\n", arg_cnt(dp));
+ FIXME("unsupported arg_cnt %d\n", arg_cnt(dp));
return E_NOTIMPL;
}
diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c
index 0044e03..ed1ebc2 100644
--- a/dlls/msi/tests/install.c
+++ b/dlls/msi/tests/install.c
@@ -2903,7 +2903,7 @@ static void test_lastusedsource(void)
r = MsiInstallProductA("msifile0.msi", "REMOVE=ALL");
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
- /* seperate cabinet file */
+ /* separate cabinet file */
size = MAX_PATH;
lstrcpyA(value, "aaa");
diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c
index 889743c..7d9e7b2 100644
--- a/dlls/shell32/tests/shlexec.c
+++ b/dlls/shell32/tests/shlexec.c
@@ -1391,8 +1391,8 @@ static DWORD WINAPI hooked_WaitForInputIdle(HANDLE process, DWORD timeout)
* a problem for us because ShellExecute will assume that an app is ready to
* receive DDE messages after it has called WaitForInputIdle() on that app.
* To work around that we install our own version of WaitForInputIdle() that
- * will wait for the child to explicitly tell it it's ready. We do that by
- * changing the entry for WaitForInputIdle() in the shell32 import address
+ * will wait for the child to explicitly tell us that it is ready. We do that
+ * by changing the entry for WaitForInputIdle() in the shell32 import address
* table.
*/
static void hook_WaitForInputIdle(void *new_func)
Module: wine
Branch: master
Commit: 8f43b54a901ea655e5650bad70eeb8c8a82d4259
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8f43b54a901ea655e5650bad7…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Oct 8 11:22:01 2009 +0200
rpcrt4: A signed 1-bit bitfield doesn't make much sense; use unsigned.
---
include/rpcndr.h | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/include/rpcndr.h b/include/rpcndr.h
index 8fee143..81baa87 100644
--- a/include/rpcndr.h
+++ b/include/rpcndr.h
@@ -204,19 +204,19 @@ typedef struct _MIDL_STUB_MESSAGE
struct _FULL_PTR_XLAT_TABLES *FullPtrXlatTables;
ULONG FullPtrRefId;
ULONG PointerLength;
- int fInDontFree:1;
- int fDontCallFreeInst:1;
- int fInOnlyParam:1;
- int fHasReturn:1;
- int fHasExtensions:1;
- int fHasNewCorrDesc:1;
- int fIsIn:1;
- int fIsOut:1;
- int fIsOicf:1;
- int fBufferValid:1;
- int fHasMemoryValidateCallback:1;
- int fInFree:1;
- int fNeedMCCP:1;
+ unsigned int fInDontFree:1;
+ unsigned int fDontCallFreeInst:1;
+ unsigned int fInOnlyParam:1;
+ unsigned int fHasReturn:1;
+ unsigned int fHasExtensions:1;
+ unsigned int fHasNewCorrDesc:1;
+ unsigned int fIsIn:1;
+ unsigned int fIsOut:1;
+ unsigned int fIsOicf:1;
+ unsigned int fBufferValid:1;
+ unsigned int fHasMemoryValidateCallback:1;
+ unsigned int fInFree:1;
+ unsigned int fNeedMCCP:1;
int fUnused:3;
int fUnused2:16;
DWORD dwDestContext;