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
5a8fc340
Commit
5a8fc340
authored
Apr 30, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
4017334e
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
13 deletions
+13
-13
device.c
dlls/d3d9/device.c
+1
-1
ddraw.c
dlls/ddraw/ddraw.c
+1
-1
query.c
dlls/dnsapi/query.c
+1
-1
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+1
-1
misc.c
dlls/odbccp32/tests/misc.c
+1
-1
mixer.c
dlls/winealsa.drv/mixer.c
+4
-4
coremidi.c
dlls/winecoreaudio.drv/coremidi.c
+1
-1
coremidi.h
dlls/winecoreaudio.drv/coremidi.h
+1
-1
midi.c
dlls/winecoreaudio.drv/midi.c
+1
-1
builtins.c
programs/cmd/builtins.c
+1
-1
No files found.
dlls/d3d9/device.c
View file @
5a8fc340
...
...
@@ -827,7 +827,7 @@ IDirect3DVertexDeclaration9 *getConvertedDecl(IDirect3DDevice9Impl *This, DWORD
convertedDecls
[
low
]
=
pDecl
;
This
->
numConvertedDecls
++
;
/* Will prevent the decl from be
e
ing destroyed */
/* Will prevent the decl from being destroyed */
((
IDirect3DVertexDeclaration9Impl
*
)
pDecl
)
->
convFVF
=
fvf
;
IDirect3DVertexDeclaration9_Release
(
pDecl
);
/* Does not destroy now */
...
...
dlls/ddraw/ddraw.c
View file @
5a8fc340
...
...
@@ -3076,7 +3076,7 @@ const IDirectDraw7Vtbl IDirectDraw7_Vtbl =
*
* This function is in ddraw.c and the DDraw object space because D3D7
* vertex buffers are created using the IDirect3D interface to the ddraw
* object, so they can be valid ac
c
ross D3D devices(theoretically. The ddraw
* object, so they can be valid across D3D devices(theoretically. The ddraw
* object also owns the wined3d device
*
* Parameters:
...
...
dlls/dnsapi/query.c
View file @
5a8fc340
...
...
@@ -67,7 +67,7 @@ static CRITICAL_SECTION resolver_cs = { &resolver_cs_debug, -1, 0, 0, 0, 0 };
static
int
resolver_initialised
;
/* call res_init() just once because of a bug in Mac OSX 10.4 */
/* call res_init() just once because of a bug in Mac OS
X 10.4 */
static
void
initialise_resolver
(
void
)
{
if
(
!
resolver_initialised
)
...
...
dlls/iphlpapi/iphlpapi_main.c
View file @
5a8fc340
...
...
@@ -52,7 +52,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
static
int
resolver_initialised
;
/* call res_init() just once because of a bug in Mac OSX 10.4 */
/* call res_init() just once because of a bug in Mac OS
X 10.4 */
static
void
initialise_resolver
(
void
)
{
if
(
!
resolver_initialised
)
...
...
dlls/odbccp32/tests/misc.c
View file @
5a8fc340
...
...
@@ -120,7 +120,7 @@ static void test_SQLInstallDriverManager(void)
sql_ret
=
SQLInstallerErrorW
(
1
,
&
error_code
,
NULL
,
0
,
NULL
);
ok
(
bool_ret
,
"SQLInstallDriverManager unexpectedly failed
\n
"
);
ok
(
sql_ret
==
SQL_NO_DATA
,
"Expected SQL_NO_DATA, got %d
\n
"
,
sql_ret
);
/* path_out should in practice be less th
e
n 0xcafe */
/* path_out should in practice be less th
a
n 0xcafe */
ok
(
path_out
!=
0xcafe
,
"Expected path_out to show the correct amount of bytes
\n
"
);
}
...
...
dlls/winealsa.drv/mixer.c
View file @
5a8fc340
...
...
@@ -67,7 +67,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mixer);
* Mute is optional
*
* For capture controls, it is needed that there is a capture switch and a volume switch,
* It doesn't matter wether it is a playback volume switch or a capture volume switch.
* It doesn't matter w
h
ether it is a playback volume switch or a capture volume switch.
* The code will first try to get/adjust capture volume, if that fails it tries playback volume
* It is not pretty, but under my 3 test cards it seems that there is no other choice:
* Most capture controls don't have a capture volume setting
...
...
@@ -305,7 +305,7 @@ static void fillcontrols(mixer *mmixer)
}
/* get amount of channels for elem */
/* Officially we should keep capture/playback sep
e
rated,
/* Officially we should keep capture/playback sep
a
rated,
* but that's not going to work in the alsa api */
static
int
chans
(
mixer
*
mmixer
,
snd_mixer_elem_t
*
elem
,
DWORD
capt
)
{
...
...
@@ -371,7 +371,7 @@ static void ALSA_MixerInit(void)
err
=
snd_mixer_open
(
&
mixdev
[
mixnum
].
mix
,
0
);
if
(
err
<
0
)
{
WARN
(
"Error occured opening mixer: %s
\n
"
,
snd_strerror
(
err
));
WARN
(
"Error occur
r
ed opening mixer: %s
\n
"
,
snd_strerror
(
err
));
continue
;
}
...
...
@@ -504,7 +504,7 @@ static void ALSA_MixerInit(void)
continue
;
eclose:
WARN
(
"Error occured initialising mixer: %s
\n
"
,
snd_strerror
(
err
));
WARN
(
"Error occur
r
ed initialising mixer: %s
\n
"
,
snd_strerror
(
err
));
HeapFree
(
GetProcessHeap
(),
0
,
mixdev
[
mixnum
].
lines
);
HeapFree
(
GetProcessHeap
(),
0
,
mixdev
[
mixnum
].
controls
);
snd_mixer_close
(
mixdev
[
mixnum
].
mix
);
...
...
dlls/winecoreaudio.drv/coremidi.c
View file @
5a8fc340
/*
* Wine Midi driver for Mac
OS
X
* Wine Midi driver for Mac
OS
X
*
* Copyright 2006 Emmanuel Maillard
*
...
...
dlls/winecoreaudio.drv/coremidi.h
View file @
5a8fc340
/*
* Wine Midi driver for Mac
OS
X
* Wine Midi driver for Mac
OS
X
*
* Copyright 2006 Emmanuel Maillard
*
...
...
dlls/winecoreaudio.drv/midi.c
View file @
5a8fc340
/*
* Sample MIDI Wine Driver for Mac
OS
X (based on OSS midi driver)
* Sample MIDI Wine Driver for Mac
OS
X (based on OSS midi driver)
*
* Copyright 1994 Martin Ayotte
* Copyright 1998 Luiz Otavio L. Zorzella (init procedures)
...
...
programs/cmd/builtins.c
View file @
5a8fc340
...
...
@@ -414,7 +414,7 @@ BOOL WCMD_delete (char *command, BOOL expectDir) {
FindClose
(
hff
);
}
/* Now recurse into all subdirectories handling the param
a
ter in the same way */
/* Now recurse into all subdirectories handling the param
e
ter in the same way */
if
(
strstr
(
quals
,
"/S"
)
!=
NULL
)
{
char
thisDir
[
MAX_PATH
];
...
...
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