Assorted spelling/grammar fixes.

This commit is contained in:
Frédéric Delanoy 2015-03-27 14:19:47 +01:00 committed by Alexandre Julliard
parent 67acce4aa6
commit f6a341c747
10 changed files with 16 additions and 16 deletions

View file

@ -2057,7 +2057,7 @@ static void test_window_style(void)
ret = SetForegroundWindow(window);
ok(ret, "Failed to set foreground window.\n");
/* Windows 7 (but not Vista and XP) show the window when it receives focus. Hide it again,
/* Windows 7 (but not Vista and XP) shows the window when it receives focus. Hide it again,
* the next tests expect this. */
ShowWindow(window, SW_HIDE);
@ -2217,7 +2217,7 @@ static void test_coop_level_mode_set(void)
{WM_WINDOWPOSCHANGING, FALSE, 0},
/* Like d3d8 and d3d9 ddraw seems to use SW_SHOWMINIMIZED instead of
* SW_MINIMIZED, causing a recursive window activation that does not
* produe the same result in Wine yet. Ignore the difference for now.
* produce the same result in Wine yet. Ignore the difference for now.
* {WM_ACTIVATE, TRUE, 0x200000 | WA_ACTIVE}, */
{WM_WINDOWPOSCHANGED, FALSE, 0},
{WM_MOVE, FALSE, 0},

View file

@ -2246,7 +2246,7 @@ static void test_window_style(void)
ret = SetForegroundWindow(window);
ok(ret, "Failed to set foreground window.\n");
/* Windows 7 (but not Vista and XP) show the window when it receives focus. Hide it again,
/* Windows 7 (but not Vista and XP) shows the window when it receives focus. Hide it again,
* the next tests expect this. */
ShowWindow(window, SW_HIDE);
@ -2417,7 +2417,7 @@ static void test_coop_level_mode_set(void)
{WM_WINDOWPOSCHANGING, FALSE, 0},
/* Like d3d8 and d3d9 ddraw seems to use SW_SHOWMINIMIZED instead of
* SW_MINIMIZED, causing a recursive window activation that does not
* produe the same result in Wine yet. Ignore the difference for now.
* produce the same result in Wine yet. Ignore the difference for now.
* {WM_ACTIVATE, TRUE, 0x200000 | WA_ACTIVE}, */
{WM_WINDOWPOSCHANGED, FALSE, 0},
{WM_MOVE, FALSE, 0},

View file

@ -2433,7 +2433,7 @@ static void test_window_style(void)
ret = SetForegroundWindow(window);
ok(ret, "Failed to set foreground window.\n");
/* Windows 7 (but not Vista and XP) show the window when it receives focus. Hide it again,
/* Windows 7 (but not Vista and XP) shows the window when it receives focus. Hide it again,
* the next tests expect this. */
ShowWindow(window, SW_HIDE);
@ -2604,7 +2604,7 @@ static void test_coop_level_mode_set(void)
{WM_WINDOWPOSCHANGING, FALSE, 0},
/* Like d3d8 and d3d9 ddraw seems to use SW_SHOWMINIMIZED instead of
* SW_MINIMIZED, causing a recursive window activation that does not
* produe the same result in Wine yet. Ignore the difference for now.
* produce the same result in Wine yet. Ignore the difference for now.
* {WM_ACTIVATE, TRUE, 0x200000 | WA_ACTIVE}, */
{WM_WINDOWPOSCHANGED, FALSE, 0},
{WM_MOVE, FALSE, 0},

View file

@ -2111,7 +2111,7 @@ static void test_window_style(void)
ret = SetForegroundWindow(window);
ok(ret, "Failed to set foreground window.\n");
/* Windows 7 (but not Vista and XP) show the window when it receives focus. Hide it again,
/* Windows 7 (but not Vista and XP) shows the window when it receives focus. Hide it again,
* the next tests expect this. */
ShowWindow(window, SW_HIDE);
@ -2281,7 +2281,7 @@ static void test_coop_level_mode_set(void)
{WM_WINDOWPOSCHANGING, FALSE, 0},
/* Like d3d8 and d3d9 ddraw seems to use SW_SHOWMINIMIZED instead of
* SW_MINIMIZED, causing a recursive window activation that does not
* produe the same result in Wine yet. Ignore the difference for now.
* produce the same result in Wine yet. Ignore the difference for now.
* {WM_ACTIVATE, TRUE, 0x200000 | WA_ACTIVE}, */
{WM_WINDOWPOSCHANGED, FALSE, 0},
{WM_MOVE, FALSE, 0},

View file

@ -2085,7 +2085,7 @@ static void test_EnumVerbs(IWebBrowser2 *wb)
ok(!fetched, "fetched = %d\n", fetched);
/* Although fetched==0, an element is returned. */
expect_oleverb(verbs, OLEIVERB_PRIMARY);
/* The first argument is ignorred and always one element is returned. */
/* The first argument is ignored and always one element is returned. */
ok(verbs[1].lVerb == 0xdeadbeef, "verbs[1].lVerb = %x\n", verbs[1].lVerb);
test_next_oleverb(enum_verbs, OLEIVERB_INPLACEACTIVATE);

View file

@ -2274,8 +2274,8 @@ static int utf7_wcstombs(const WCHAR *src, int srclen, char *dst, int dstlen)
if (offset)
{
/* Windows won't create a padded base64 character if there's not room for the - sign too
* this is probably a bug in Windows */
/* Windows won't create a padded base64 character if there's no room for the - sign
* as well ; this is probably a bug in Windows */
if (dstlen > 0 && dest_index + 1 >= dstlen)
return -1;

View file

@ -2770,7 +2770,7 @@ static void test_markers(void)
DeleteFileA(msifile);
}
#define MY_NVIEWS 4000 /* Largest installer I've seen uses < 2k */
#define MY_NVIEWS 4000 /* Largest installer I've seen uses < 2000 */
static void test_handle_limit(void)
{
int i;

View file

@ -722,7 +722,7 @@ static BOOL get_twips_entry( union sysparam_all_entry *entry, UINT int_param, vo
if (load_entry( &entry->hdr, buf, sizeof(buf) ))
{
int val = atoiW( buf );
/* Dimension are quoted as being "twips" values if negative and pixels if positive.
/* Dimensions are quoted as being "twips" values if negative and pixels if positive.
* One inch is 1440 twips.
* See for example
* Technical Reference to the Windows 2000 Registry ->

View file

@ -3574,7 +3574,7 @@ static void test_select(void)
/* select() works in 3 distinct states:
* - to check if a connection attempt ended with success or error;
* - to check if a pending connection is waiting for acceptance;
* - to check for data to read, avaliability for write and OOB data
* - to check for data to read, availability for write and OOB data
*
* The tests below ensure that all conditions are tested.
*/
@ -7327,7 +7327,7 @@ static void test_sioAddressListChange(void)
goto end;
}
/* Wait for address changes, request that the user connect/disconnect an interface */
/* Wait for address changes, request that the user connects/disconnects an interface */
memset(&overlapped, 0, sizeof(overlapped));
overlapped.hEvent = CreateEventA(NULL, FALSE, FALSE, NULL);
ret = WSAIoctl(sock, SIO_ADDRESS_LIST_CHANGE, NULL, 0, NULL, 0, &num_bytes, &overlapped, NULL);

View file

@ -70,7 +70,7 @@ When in \fBgdb\fR proxy mode, the following options are available:
.PP
.IP \fB--no-start\fR
\fBgdb\fR will not be automatically
started. Relevant information for starting \fBgdb\fR are printed on
started. Relevant information for starting \fBgdb\fR is printed on
screen. This is somehow useful when not directly using \fBgdb\fR but
some graphical front-ends, like \fBddd\fR or \fBkgbd\fR.
.IP \fB--with-xterm\fR