Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
fa48cb04
Commit
fa48cb04
authored
May 28, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
May 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
ffbf92f5
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
24 additions
and
24 deletions
+24
-24
sip.c
dlls/crypt32/tests/sip.c
+2
-2
utils.c
dlls/ddraw/utils.c
+1
-1
automation.c
dlls/msi/tests/automation.c
+1
-1
xmlelem.c
dlls/msxml3/tests/xmlelem.c
+1
-1
vartest.c
dlls/oleaut32/tests/vartest.c
+13
-13
variant.c
dlls/oleaut32/variant.c
+5
-5
editor.c
dlls/riched20/tests/editor.c
+1
-1
No files found.
dlls/crypt32/tests/sip.c
View file @
fa48cb04
...
...
@@ -313,7 +313,7 @@ static void test_SIPLoad(void)
/* The function addresses returned by CryptSIPLoad are actually the addresses of
* crypt32's own functions. A function calling these addresses will end up first
* calling crypt32 functions which in it
'
s turn call the equivalent in the SIP
* calling crypt32 functions which in its turn call the equivalent in the SIP
* as dictated by the given GUID.
*/
if
(
funcCryptSIPGetSignedDataMsg
&&
funcCryptSIPPutSignedDataMsg
&&
funcCryptSIPCreateIndirectData
&&
...
...
@@ -337,7 +337,7 @@ static void test_SIPLoad(void)
todo_wine
{
ok
(
ret
,
"Expected CryptSIPLoad to succeed
\n
"
);
/* This call on it
's own would have resulted in a
ERROR_PROC_NOT_FOUND, but the previous
/* This call on it
s own would have resulted in an
ERROR_PROC_NOT_FOUND, but the previous
* call to CryptSIPLoad already loaded wintrust.dll. As this information is cached,
* CryptSIPLoad will not try to search for the already mentioned DllCanUnloadNow.
*/
...
...
dlls/ddraw/utils.c
View file @
fa48cb04
...
...
@@ -583,7 +583,7 @@ PixelFormat_DD2WineD3D(const DDPIXELFORMAT *DDPixelFormat)
{
return
WINED3DFMT_R8G8_B8G8
;
}
return
WINED3DFMT_UNKNOWN
;
/* Abuse this as a error value */
return
WINED3DFMT_UNKNOWN
;
/* Abuse this as a
n
error value */
}
else
if
(
DDPixelFormat
->
dwFlags
&
DDPF_BUMPDUDV
)
{
...
...
dlls/msi/tests/automation.c
View file @
fa48cb04
...
...
@@ -1851,7 +1851,7 @@ static void test_Installer_InstallProduct(LPCWSTR szPath)
ok
(
hr
==
DISP_E_EXCEPTION
,
"Installer_ProductInfo failed, hresult 0x%08x
\n
"
,
hr
);
ok_exception
(
hr
,
szProductInfoException
);
/* Non
-
existent attribute */
/* Nonexistent attribute */
memset
(
szString
,
0
,
sizeof
(
szString
));
hr
=
Installer_ProductInfo
(
szProductCode
,
szMsifile
,
szString
);
ok
(
hr
==
DISP_E_EXCEPTION
,
"Installer_ProductInfo failed, hresult 0x%08x
\n
"
,
hr
);
...
...
dlls/msxml3/tests/xmlelem.c
View file @
fa48cb04
...
...
@@ -116,7 +116,7 @@ static void test_xmlelem(void)
hr
=
IXMLElement_removeAttribute
(
element
,
str
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %d
\n
"
,
hr
);
/* remove now non
-
existent attribute */
/* remove now nonexistent attribute */
hr
=
IXMLElement_removeAttribute
(
element
,
str
);
ok
(
hr
==
S_FALSE
,
"Expected S_FALSE, got %d
\n
"
,
hr
);
...
...
dlls/oleaut32/tests/vartest.c
View file @
fa48cb04
...
...
@@ -1252,7 +1252,7 @@ static void test_VarParseNumFromStr(void)
EXPECT
(
1
,
NUMPRS_EXPONENT
,
NUMPRS_EXPONENT
,
4
,
0
,
-
1
);
EXPECT2
(
1
,
FAILDIG
);
/* As are positive exponents and leading exponent 0
'
s */
/* As are positive exponents and leading exponent 0s */
CONVERT
(
"1e+01"
,
NUMPRS_EXPONENT
);
EXPECT
(
1
,
NUMPRS_EXPONENT
,
NUMPRS_EXPONENT
,
5
,
0
,
1
);
EXPECT2
(
1
,
FAILDIG
);
...
...
@@ -1304,12 +1304,12 @@ static void test_VarParseNumFromStr(void)
/** Combinations **/
/* Leading whitepace and plus, doesn't consume trailing whitespace */
/* Leading white
s
pace and plus, doesn't consume trailing whitespace */
CONVERT
(
"+ 0 "
,
NUMPRS_LEADING_PLUS
|
NUMPRS_LEADING_WHITE
);
EXPECT
(
1
,
NUMPRS_LEADING_PLUS
|
NUMPRS_LEADING_WHITE
,
NUMPRS_LEADING_PLUS
|
NUMPRS_LEADING_WHITE
,
3
,
0
,
0
);
EXPECT2
(
0
,
FAILDIG
);
/* Order of whitepace and plus is unimportant */
/* Order of white
s
pace and plus is unimportant */
CONVERT
(
" +0"
,
NUMPRS_LEADING_PLUS
|
NUMPRS_LEADING_WHITE
);
EXPECT
(
1
,
NUMPRS_LEADING_PLUS
|
NUMPRS_LEADING_WHITE
,
NUMPRS_LEADING_PLUS
|
NUMPRS_LEADING_WHITE
,
3
,
0
,
0
);
EXPECT2
(
0
,
FAILDIG
);
...
...
@@ -5428,7 +5428,7 @@ static HRESULT (WINAPI *pVarAnd)(LPVARIANT,LPVARIANT,LPVARIANT);
V_VT(&exp) = VT_##rvt; V_##rvt(&exp) = rval; \
test_var_call2( __LINE__, pVarAnd, &left, &right, &exp );
/* Skip any type that is not defined or produces a error for every case */
/* Skip any type that is not defined or produces a
n
error for every case */
#define SKIPTESTAND(a) \
if (a == VT_ERROR || a == VT_VARIANT || \
a == VT_DISPATCH || a == VT_UNKNOWN || \
...
...
@@ -5474,7 +5474,7 @@ static void test_VarAnd(void)
if
((
rightvt
|
ExtraFlags
[
i
])
==
VT_BSTR
)
V_BSTR
(
&
right
)
=
true_str
;
/* Native VarAnd always returns a
error when using any
extra
/* Native VarAnd always returns a
n error when using
extra
* flags or if the variant combination is I8 and INT.
*/
if
((
leftvt
==
VT_I8
&&
rightvt
==
VT_INT
)
||
...
...
@@ -6372,7 +6372,7 @@ static HRESULT (WINAPI *pVarPow)(LPVARIANT,LPVARIANT,LPVARIANT);
V_VT(&exp) = VT_##rvt; V_##rvt(&exp) = rval; \
test_var_call2( __LINE__, pVarPow, &left, &right, &exp );
/* Skip any type that is not defined or produces a error for every case */
/* Skip any type that is not defined or produces a
n
error for every case */
#define SKIPTESTPOW(a) \
if (a == VT_ERROR || a == VT_VARIANT || \
a == VT_DISPATCH || a == VT_UNKNOWN || \
...
...
@@ -6424,7 +6424,7 @@ static void test_VarPow(void)
if
(
rightvt
==
VT_BSTR
)
V_BSTR
(
&
right
)
=
num2_str
;
/* Native VarPow always returns a
error when using any
extra flags */
/* Native VarPow always returns a
n error when using
extra flags */
if
(
ExtraFlags
[
i
]
!=
0
)
bFail
=
TRUE
;
...
...
@@ -6876,7 +6876,7 @@ static HRESULT (WINAPI *pVarDiv)(LPVARIANT,LPVARIANT,LPVARIANT);
V_VT(&exp) = VT_##rvt; V_##rvt(&exp) = rval; \
test_var_call2( __LINE__, pVarDiv, &left, &right, &exp );
/* Skip any type that is not defined or produces a error for every case */
/* Skip any type that is not defined or produces a
n
error for every case */
#define SKIPTESTDIV(a) \
if (a == VT_ERROR || a == VT_VARIANT || \
a == VT_DISPATCH || a == VT_UNKNOWN || \
...
...
@@ -6995,7 +6995,7 @@ static void test_VarDiv(void)
else
bFail
=
TRUE
;
/* Native VarDiv always returns a
error when using any
extra flags */
/* Native VarDiv always returns a
n error when using
extra flags */
if
(
ExtraFlags
[
i
]
!=
0
)
bFail
=
TRUE
;
...
...
@@ -7216,7 +7216,7 @@ static HRESULT (WINAPI *pVarIdiv)(LPVARIANT,LPVARIANT,LPVARIANT);
V_VT(&exp) = VT_##rvt; V_##rvt(&exp) = rval; \
test_var_call2( __LINE__, pVarIdiv, &left, &right, &exp );
/* Skip any type that is not defined or produces a error for every case */
/* Skip any type that is not defined or produces a
n
error for every case */
#define SKIPTESTIDIV(a) \
if (a == VT_ERROR || a == VT_VARIANT || \
a == VT_DISPATCH || a == VT_UNKNOWN || \
...
...
@@ -7304,7 +7304,7 @@ static void test_VarIdiv(void)
default:
break
;
}
/* Native VarIdiv always returns a
error when using any
extra
/* Native VarIdiv always returns a
n error when using
extra
* flags or if the variant combination is I8 and INT.
*/
if
((
leftvt
==
VT_I8
&&
rightvt
==
VT_INT
)
||
...
...
@@ -7720,7 +7720,7 @@ static HRESULT (WINAPI *pVarImp)(LPVARIANT,LPVARIANT,LPVARIANT);
V_VT(&exp) = VT_##rvt; V_##rvt(&exp) = rval; \
test_var_call2( __LINE__, pVarImp, &left, &right, &exp );
/* Skip any type that is not defined or produces a error for every case */
/* Skip any type that is not defined or produces a
n
error for every case */
#define SKIPTESTIMP(a) \
if (a == VT_ERROR || a == VT_VARIANT || \
a == VT_DISPATCH || a == VT_UNKNOWN || \
...
...
@@ -7806,7 +7806,7 @@ static void test_VarImp(void)
default:
break
;
}
/* Native VarImp always returns a
error when using any
extra
/* Native VarImp always returns a
n error when using
extra
* flags or if the variants are I8 and INT.
*/
if
((
leftvt
==
VT_I8
&&
rightvt
==
VT_INT
)
||
...
...
dlls/oleaut32/variant.c
View file @
fa48cb04
...
...
@@ -2929,7 +2929,7 @@ HRESULT WINAPI VarAnd(LPVARIANT left, LPVARIANT right, LPVARIANT result)
}
ExtraFlags
=
leftExtraFlags
;
/* Native VarAnd always returns a
error when using any
extra
/* Native VarAnd always returns a
n error when using
extra
* flags or if the variant combination is I8 and INT.
*/
if
((
leftvt
==
VT_I8
&&
rightvt
==
VT_INT
)
||
...
...
@@ -3563,7 +3563,7 @@ HRESULT WINAPI VarDiv(LPVARIANT left, LPVARIANT right, LPVARIANT result)
}
ExtraFlags
=
leftExtraFlags
;
/* Native VarDiv always returns a
error when using any
extra flags */
/* Native VarDiv always returns a
n error when using
extra flags */
if
(
ExtraFlags
!=
0
)
{
hres
=
DISP_E_BADVARTYPE
;
...
...
@@ -5131,7 +5131,7 @@ HRESULT WINAPI VarIdiv(LPVARIANT left, LPVARIANT right, LPVARIANT result)
}
ExtraFlags
=
leftExtraFlags
;
/* Native VarIdiv always returns a
error when using any
extra
/* Native VarIdiv always returns a
n error when using
extra
* flags or if the variant combination is I8 and INT.
*/
if
((
leftvt
==
VT_I8
&&
rightvt
==
VT_INT
)
||
...
...
@@ -5543,7 +5543,7 @@ HRESULT WINAPI VarPow(LPVARIANT left, LPVARIANT right, LPVARIANT result)
}
ExtraFlags
=
leftExtraFlags
;
/* Native VarPow always returns a
error when using any
extra flags */
/* Native VarPow always returns a
n error when using
extra flags */
if
(
ExtraFlags
!=
0
)
{
hr
=
DISP_E_BADVARTYPE
;
...
...
@@ -5659,7 +5659,7 @@ HRESULT WINAPI VarImp(LPVARIANT left, LPVARIANT right, LPVARIANT result)
}
ExtraFlags
=
leftExtraFlags
;
/* Native VarImp always returns a
error when using any
extra
/* Native VarImp always returns a
n error when using
extra
* flags or if the variants are I8 and INT.
*/
if
((
leftvt
==
VT_I8
&&
rightvt
==
VT_INT
)
||
...
...
dlls/riched20/tests/editor.c
View file @
fa48cb04
...
...
@@ -886,7 +886,7 @@ static void test_EM_SETUNDOLIMIT(void)
static
void
test_ES_PASSWORD
(
void
)
{
/* This isn't hugely testable, so we're just going to run it through it
's paces.
*/
/* This isn't hugely testable, so we're just going to run it through it
s paces
*/
HWND
hwndRichEdit
=
new_richedit
(
NULL
);
WCHAR
result
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment