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
6333fa75
Commit
6333fa75
authored
Jul 03, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
1625dae7
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
device.c
dlls/dinput/device.c
+3
-3
ios.c
dlls/msvcp90/ios.c
+1
-1
locale.c
dlls/msvcp90/locale.c
+2
-2
query.c
dlls/wbemprox/query.c
+1
-1
socket.c
dlls/ws2_32/socket.c
+1
-1
curses.c
programs/wineconsole/curses.c
+1
-1
No files found.
dlls/dinput/device.c
View file @
6333fa75
...
...
@@ -605,7 +605,7 @@ HRESULT _build_action_map(LPDIRECTINPUTDEVICE8W iface, LPDIACTIONFORMATW lpdiaf,
for
(
i
=
0
;
i
<
lpdiaf
->
dwNumActions
;
i
++
)
{
/* Don't touch a
n
user configured action */
/* Don't touch a user configured action */
if
(
lpdiaf
->
rgoAction
[
i
].
dwHow
==
DIAH_USERCONFIG
)
continue
;
if
((
lpdiaf
->
rgoAction
[
i
].
dwSemantic
&
devMask
)
==
devMask
)
...
...
@@ -619,7 +619,7 @@ HRESULT _build_action_map(LPDIRECTINPUTDEVICE8W iface, LPDIACTIONFORMATW lpdiaf,
if
(
type
==
DIDFT_PSHBUTTON
)
type
=
DIDFT_BUTTON
;
if
(
type
==
DIDFT_RELAXIS
)
type
=
DIDFT_AXIS
;
/*
Assure that
the object exists */
/*
Make sure
the object exists */
odf
=
dataformat_to_odf_by_type
(
df
,
inst
,
type
);
if
(
odf
!=
NULL
)
...
...
@@ -632,7 +632,7 @@ HRESULT _build_action_map(LPDIRECTINPUTDEVICE8W iface, LPDIACTIONFORMATW lpdiaf,
}
else
if
(
!
(
dwFlags
&
DIDBAM_PRESERVE
))
{
/*
w
e must clear action data belonging to other devices */
/*
W
e must clear action data belonging to other devices */
memset
(
&
lpdiaf
->
rgoAction
[
i
].
guidInstance
,
0
,
sizeof
(
GUID
));
lpdiaf
->
rgoAction
[
i
].
dwHow
=
DIAH_UNMAPPED
;
}
...
...
dlls/msvcp90/ios.c
View file @
6333fa75
...
...
@@ -2494,7 +2494,7 @@ int __thiscall basic_filebuf_char_uflow(basic_filebuf_char *this)
}
}
FIXME
(
"buffer is to small
\n
"
);
FIXME
(
"buffer is to
o
small
\n
"
);
return
EOF
;
}
...
...
dlls/msvcp90/locale.c
View file @
6333fa75
...
...
@@ -5530,7 +5530,7 @@ num_get* num_get_char_use_facet(const locale *loc)
/* Copies number to dest buffer, validates grouping and skips separators.
* Updates first so it points past the number, all digits are skipped.
* Returns how exponent needs to changed.
* Size of dest buffer is not specified, assuming it's not smaller th
e
n 32:
* Size of dest buffer is not specified, assuming it's not smaller th
a
n 32:
* strlen(+0.e+) + 22(digits) + 4(expontent) + 1(nullbyte)
*/
int
__cdecl
num_get_char__Getffld
(
const
num_get
*
this
,
char
*
dest
,
istreambuf_iterator_char
*
first
,
...
...
@@ -5685,7 +5685,7 @@ int __cdecl num_get_char__Getffldx(const num_get *this, char *dest, istreambuf_i
/* Copies number to dest buffer, validates grouping and skips separators.
* Updates first so it points past the number, all digits are skipped.
* Returns number base (8, 10 or 16).
* Size of dest buffer is not specified, assuming it's not smaller th
e
n 25:
* Size of dest buffer is not specified, assuming it's not smaller th
a
n 25:
* 22(8^22>2^64)+1(detect overflows)+1(sign)+1(nullbyte) = 25
*/
int
__cdecl
num_get_char__Getifld
(
const
num_get
*
this
,
char
*
dest
,
istreambuf_iterator_char
*
first
,
...
...
dlls/wbemprox/query.c
View file @
6333fa75
...
...
@@ -63,7 +63,7 @@ static UINT get_column_size( const struct table *table, UINT column )
case
CIM_STRING
:
return
sizeof
(
WCHAR
*
);
default:
ERR
(
"unkown column type %u
\n
"
,
table
->
columns
[
column
].
type
&
COL_TYPE_MASK
);
ERR
(
"unk
n
own column type %u
\n
"
,
table
->
columns
[
column
].
type
&
COL_TYPE_MASK
);
break
;
}
return
sizeof
(
INT32
);
...
...
dlls/ws2_32/socket.c
View file @
6333fa75
...
...
@@ -5605,7 +5605,7 @@ static struct WS_hostent *WS_create_he(char *name, int aliases, int aliases_size
memset
(
p_to
,
0
,
size
);
/* Use the memory in the same way winsock does.
* First set the pointer for aliases, second set the pointers for addresses
s
.
* First set the pointer for aliases, second set the pointers for addresses.
* Third fill the addresses indexes, fourth jump aliases names size.
* Fifth fill the hostname.
* NOTE: This method is valid for OS version's >= XP.
...
...
programs/wineconsole/curses.c
View file @
6333fa75
...
...
@@ -670,7 +670,7 @@ static unsigned WCCURSES_FillMouse(INPUT_RECORD* ir)
WINE_TRACE
(
"[%u]: (%d, %d) %08lx
\n
"
,
mevt
.
id
,
mevt
.
x
,
mevt
.
y
,
(
unsigned
long
)
mevt
.
bstate
);
/* macros to ease mapping ncurse button numbering to windows' one */
/* macros to ease mapping ncurse
s
button numbering to windows' one */
#define BTN1_BIT FROM_LEFT_1ST_BUTTON_PRESSED
#define BTN2_BIT RIGHTMOST_BUTTON_PRESSED
#define BTN3_BIT FROM_LEFT_2ND_BUTTON_PRESSED
...
...
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