Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f405629e
Commit
f405629e
authored
Oct 28, 2003
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 28, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Weekly spelling fixes.
parent
38713951
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
15 additions
and
15 deletions
+15
-15
toolbar.c
dlls/comctl32/toolbar.c
+1
-1
locale.c
dlls/kernel/tests/locale.c
+1
-1
variant.c
dlls/oleaut32/variant.c
+1
-1
input.c
dlls/user/tests/input.c
+1
-1
tmschema.h
include/tmschema.h
+1
-1
cpmap.pl
libs/unicode/cpmap.pl
+2
-2
regapi.c
programs/regapi/regapi.c
+4
-4
regproc.c
programs/regedit/regproc.c
+1
-1
winapi_check_options.pm
tools/winapi/winapi_check_options.pm
+2
-2
winapi_check
tools/winapi_check/winapi_check
+1
-1
No files found.
dlls/comctl32/toolbar.c
View file @
f405629e
...
...
@@ -5483,7 +5483,7 @@ TOOLBAR_SetRedraw (HWND hwnd, WPARAM wParam, LPARAM lParam)
* According to testing V4.71 of COMCTL32 returns the
* *previous* status of the redraw flag (either 0 or 1)
* instead of the MSDN documented value of 0 if handled.
* (For laughs see the "consist
a
ncy" with same function
* (For laughs see the "consist
e
ncy" with same function
* in rebar.)
*
*****************************************************/
...
...
dlls/kernel/tests/locale.c
View file @
f405629e
...
...
@@ -1272,7 +1272,7 @@ void test_FoldStringW(void)
0x2789
,
/* No inverted Patterned circled */
'\0'
/* Terminator */
};
/* Compat
a
bility conversion results */
/* Compat
i
bility conversion results */
static
const
WCHAR
compat_F900_FA2F
[
256
+
48
]
=
{
0x8c48
,
0x66f4
,
0x8eca
,
0x8cc8
,
0x6ed1
,
0x4e32
,
0x53e5
,
0x9f9c
,
...
...
dlls/oleaut32/variant.c
View file @
f405629e
...
...
@@ -4645,7 +4645,7 @@ HRESULT WINAPI VarParseNumFromStr(OLECHAR *lpszStr, LCID lcid, ULONG dwFlags,
HRESULT
WINAPI
VarNumFromParseNum
(
NUMPARSE
*
pNumprs
,
BYTE
*
rgbDig
,
ULONG
dwVtBits
,
VARIANT
*
pVarDst
)
{
/* Scale factors and limits for double arithm
atic
*/
/* Scale factors and limits for double arithm
etics
*/
static
const
double
dblMultipliers
[
11
]
=
{
1
.
0
,
10
.
0
,
100
.
0
,
1000
.
0
,
10000
.
0
,
100000
.
0
,
1000000
.
0
,
10000000
.
0
,
100000000
.
0
,
1000000000
.
0
,
10000000000
.
0
...
...
dlls/user/tests/input.c
View file @
f405629e
...
...
@@ -39,7 +39,7 @@
* 4. resolve the win9x case when there is a need or the testing frame work
* offers a nice way.
* 5. The test app creates a window, the user should not take the focus
* away during its short exist
a
nce. I could do something to prevent that
* away during its short exist
e
nce. I could do something to prevent that
* if it is a problem.
*
*/
...
...
include/tmschema.h
View file @
f405629e
...
...
@@ -564,7 +564,7 @@
/* MENUBAND parts */
#define MDP_NEWAPPBUTTON 1
/*
sepErator isn't a typo, as per microsoft
s headers */
/*
MDP_SEPERATOR isn't a typo, as per Microsoft'
s headers */
#define MDP_SEPERATOR 2
/* MENUBAND NEWAPPBUTTON states */
...
...
libs/unicode/cpmap.pl
View file @
f405629e
...
...
@@ -296,7 +296,7 @@ sub READ_DEFAULTS
# decomposition of the form "<foo> 1234" -> use char if type is known
if
((
$src
>=
0xf900
&&
$src
<
0xfb00
)
||
(
$src
>=
0xfe30
&&
$src
<
0xfffd
))
{
# Single char decomposition in the compat
a
bility range
# Single char decomposition in the compat
i
bility range
$compatmap_table
[
$src
]
=
hex
$2
;
}
next
unless
(
$1
eq
"font"
||
...
...
@@ -329,7 +329,7 @@ sub READ_DEFAULTS
elsif
(
$decomp
=~
/^(<[a-z]+>\s)*([0-9a-fA-F]+)$/
&&
((
$src
>=
0xf900
&&
$src
<
0xfb00
)
||
(
$src
>=
0xfe30
&&
$src
<
0xfffd
)))
{
# Single char decomposition in the compat
a
bility range
# Single char decomposition in the compat
i
bility range
$compatmap_table
[
$src
]
=
hex
$2
;
}
}
...
...
programs/regapi/regapi.c
View file @
f405629e
...
...
@@ -624,7 +624,7 @@ static void processSetValue(LPSTR cmdline)
{
LPSTR
argv
[
SET_VALUE_MAX_ARGS
];
/* args storage */
LPSTR
token
=
NULL
;
/* current token anal
i
zed */
LPSTR
token
=
NULL
;
/* current token anal
y
zed */
ULONG
argCounter
=
0
;
/* counter of args */
INT
counter
;
HRESULT
hRes
=
0
;
...
...
@@ -672,7 +672,7 @@ static void processSetValue(LPSTR cmdline)
static
void
processQueryValue
(
LPSTR
cmdline
)
{
LPSTR
argv
[
QUERY_VALUE_MAX_ARGS
];
/* args storage */
LPSTR
token
=
NULL
;
/* current token anal
i
zed */
LPSTR
token
=
NULL
;
/* current token anal
y
zed */
ULONG
argCounter
=
0
;
/* counter of args */
INT
counter
;
HRESULT
hRes
=
0
;
...
...
@@ -995,7 +995,7 @@ static void doUnregisterDLL(LPSTR stdInput) {
*/
int
PASCAL
WinMain
(
HINSTANCE
inst
,
HINSTANCE
prev
,
LPSTR
cmdline
,
int
show
)
{
LPSTR
token
=
NULL
;
/* current token anal
i
zed */
LPSTR
token
=
NULL
;
/* current token anal
y
zed */
LPSTR
stdInput
=
NULL
;
/* line read from stdin */
INT
cmdIndex
=
-
1
;
/* index of the command in array */
LPSTR
nextLine
=
NULL
;
...
...
@@ -1082,7 +1082,7 @@ int PASCAL WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
}
/*
* We process every line
s
even the NULL (last) line, to indicate the
* We process every line
,
even the NULL (last) line, to indicate the
* end of the processing to the specific process.
*/
commandAPIs
[
cmdIndex
](
stdInput
);
...
...
programs/regedit/regproc.c
View file @
f405629e
...
...
@@ -776,7 +776,7 @@ void processQueryValue(LPSTR cmdline)
exit
(
1
);
#if 0
LPSTR argv[QUERY_VALUE_MAX_ARGS];/* args storage */
LPSTR token = NULL; /* current token anal
i
zed */
LPSTR token = NULL; /* current token anal
y
zed */
ULONG argCounter = 0; /* counter of args */
INT counter;
HRESULT hRes = 0;
...
...
tools/winapi/winapi_check_options.pm
View file @
f405629e
...
...
@@ -44,8 +44,8 @@ my %options_long = (
"shared"
=>
{
default
=>
0
,
description
=>
"show shared functions between Win16 and Win32"
},
"shared-segmented"
=>
{
default
=>
0
,
description
=>
"segmented shared functions between Win16 and Win32 checking"
},
"config"
=>
{
default
=>
1
,
parent
=>
"local"
,
description
=>
"check configuration include consist
a
ncy"
},
"config-unne
ssary"
=>
{
default
=>
0
,
parent
=>
"config"
,
description
=>
"check for unn
essary #include \"config.h\""
},
"config"
=>
{
default
=>
1
,
parent
=>
"local"
,
description
=>
"check configuration include consist
e
ncy"
},
"config-unne
cessary"
=>
{
default
=>
0
,
parent
=>
"config"
,
description
=>
"check for unnec
essary #include \"config.h\""
},
"spec-mismatch"
=>
{
default
=>
0
,
description
=>
"spec file mismatch checking"
},
...
...
tools/winapi_check/winapi_check
View file @
f405629e
...
...
@@ -663,7 +663,7 @@ foreach my $file (@c_files) {
preprocessor_found
=>
$found_preprocessor
});
if
(
$options
->
config_unnessary
)
{
if
(
$options
->
config_unne
ce
ssary
)
{
if
(
$config
&&
$conditional
==
0
)
{
$output
->
write
(
"$file: include2info config.h but do not use any conditionals\n"
);
}
...
...
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