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
633ee950
Commit
633ee950
authored
May 06, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
May 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
8824bc1e
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
20 additions
and
20 deletions
+20
-20
comboex.c
dlls/comctl32/comboex.c
+1
-1
listview.c
dlls/comctl32/listview.c
+1
-1
segment.c
dlls/dmime/segment.c
+2
-2
styletrack.c
dlls/dmstyle/styletrack.c
+1
-1
module.c
dlls/kernel32/module.c
+1
-1
action.c
dlls/msi/action.c
+1
-1
mpegsplit.c
dlls/quartz/mpegsplit.c
+1
-1
pin.h
dlls/quartz/pin.h
+1
-1
waveparser.c
dlls/quartz/waveparser.c
+1
-1
mpi.c
dlls/rsaenh/mpi.c
+1
-1
shelllink.c
dlls/shell32/tests/shelllink.c
+1
-1
shellpath.c
dlls/shell32/tests/shellpath.c
+1
-1
dsm_ctrl.c
dlls/twain_32/dsm_ctrl.c
+1
-1
state.c
dlls/wined3d/state.c
+1
-1
swapchain.c
dlls/wined3d/swapchain.c
+1
-1
lolvldrv.c
dlls/winmm/lolvldrv.c
+1
-1
mmsystem.c
dlls/winmm/mmsystem.c
+1
-1
playsound.c
dlls/winmm/playsound.c
+1
-1
parser.y
tools/widl/parser.y
+1
-1
No files found.
dlls/comctl32/comboex.c
View file @
633ee950
...
...
@@ -1635,7 +1635,7 @@ static LRESULT COMBOEX_NCCreate (HWND hwnd)
oldstyle
=
(
DWORD
)
GetWindowLongW
(
hwnd
,
GWL_STYLE
);
newstyle
=
oldstyle
&
~
(
WS_VSCROLL
|
WS_HSCROLL
|
WS_BORDER
);
if
(
newstyle
!=
oldstyle
)
{
TRACE
(
"req style %08x, reseting style %08x
\n
"
,
TRACE
(
"req style %08x, reset
t
ing style %08x
\n
"
,
oldstyle
,
newstyle
);
SetWindowLongW
(
hwnd
,
GWL_STYLE
,
newstyle
);
}
...
...
dlls/comctl32/listview.c
View file @
633ee950
...
...
@@ -8506,7 +8506,7 @@ static LRESULT LISTVIEW_KillFocus(LISTVIEW_INFO *infoPtr)
/* set window focus flag */
infoPtr
->
bFocus
=
FALSE
;
/* invalidate the selected items before reseting focus flag */
/* invalidate the selected items before reset
t
ing focus flag */
LISTVIEW_InvalidateSelectedItems
(
infoPtr
);
return
0
;
...
...
dlls/dmime/segment.c
View file @
633ee950
...
...
@@ -844,7 +844,7 @@ static HRESULT IDirectMusicSegment8Impl_IPersistStream_ParseTrackForm (LPPERSIST
switch
(
Chunk
.
fccID
)
{
case
DMUS_FOURCC_TRACK_CHUNK
:
{
TRACE_
(
dmfile
)(
": track chun
c
k
\n
"
);
TRACE_
(
dmfile
)(
": track chunk
\n
"
);
IStream_Read
(
pStm
,
&
track_hdr
,
sizeof
(
DMUS_IO_TRACK_HEADER
),
NULL
);
TRACE_
(
dmfile
)(
" - class: %s
\n
"
,
debugstr_guid
(
&
track_hdr
.
guidClassID
));
TRACE_
(
dmfile
)(
" - dwGroup: %d
\n
"
,
track_hdr
.
dwGroup
);
...
...
@@ -853,7 +853,7 @@ static HRESULT IDirectMusicSegment8Impl_IPersistStream_ParseTrackForm (LPPERSIST
break
;
}
case
DMUS_FOURCC_TRACK_EXTRAS_CHUNK
:
{
TRACE_
(
dmfile
)(
": track extras chun
c
k
\n
"
);
TRACE_
(
dmfile
)(
": track extras chunk
\n
"
);
IStream_Read
(
pStm
,
&
track_xhdr
,
sizeof
(
DMUS_IO_TRACK_EXTRAS_HEADER
),
NULL
);
break
;
}
...
...
dlls/dmstyle/styletrack.c
View file @
633ee950
...
...
@@ -282,7 +282,7 @@ static HRESULT IDirectMusicStyleTrack_IPersistStream_ParseStyleRef (LPPERSISTSTR
TRACE_
(
dmfile
)(
": %s chunk (size = %d)"
,
debugstr_fourcc
(
Chunk
.
fccID
),
Chunk
.
dwSize
);
switch
(
Chunk
.
fccID
)
{
case
DMUS_FOURCC_TIME_STAMP_CHUNK
:
{
TRACE_
(
dmfile
)(
": Time Stamp chun
c
k
\n
"
);
TRACE_
(
dmfile
)(
": Time Stamp chunk
\n
"
);
pNewItem
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
DMUS_PRIVATE_STYLE_ITEM
));
if
(
NULL
==
pNewItem
)
{
ERR
(
": no more memory
\n
"
);
...
...
dlls/kernel32/module.c
View file @
633ee950
...
...
@@ -361,7 +361,7 @@ enum binary_type MODULE_GetBinaryType( HANDLE hfile, void **res_start, void **re
* FALSE, if the file is not an executable or if the function fails.
*
* NOTES
* The type of executable is a property that determines which subsytem an
* The type of executable is a property that determines which subsy
s
tem an
* executable file runs under. lpBinaryType can be set to one of the following
* values:
* SCS_32BIT_BINARY: A Win32 based application
...
...
dlls/msi/action.c
View file @
633ee950
...
...
@@ -1992,7 +1992,7 @@ static UINT ITERATE_CostFinalizeConditions(MSIRECORD *row, LPVOID param)
if
(
MSI_EvaluateConditionW
(
package
,
Condition
)
==
MSICONDITION_TRUE
)
{
int
level
=
MSI_RecordGetInteger
(
row
,
2
);
TRACE
(
"Reseting feature %s to level %i
\n
"
,
debugstr_w
(
name
),
level
);
TRACE
(
"Reset
t
ing feature %s to level %i
\n
"
,
debugstr_w
(
name
),
level
);
feature
->
Level
=
level
;
}
}
...
...
dlls/quartz/mpegsplit.c
View file @
633ee950
...
...
@@ -259,7 +259,7 @@ static HRESULT MPEGSplitter_process_sample(LPVOID iface, IMediaSample * pSample,
hr
=
IMediaSample_GetPointer
(
pSample
,
&
pbSrcStream
);
}
/* Flush occuring */
/* Flush occur
r
ing */
if
(
cbSrcStream
==
0
)
{
FIXME
(
".. Why do I need you?
\n
"
);
...
...
dlls/quartz/pin.h
View file @
633ee950
...
...
@@ -51,7 +51,7 @@ typedef HRESULT (* CLEANUPPROC) (LPVOID userdata);
/* This function is called whenever a request for a new sample is made,
* If you implement it (it can be NULL for default behavior), you have to
* call IMemAllocator_GetBuffer and IMemAllocator_RequestBuffer
* This is useful if you want to request more th
e
n 1 buffer at simultaneously
* This is useful if you want to request more th
a
n 1 buffer at simultaneously
* If PullPin->flushed is set, it means that all buffers queued previously are gone
*
* This will also cause the Sample Proc to be called with empty buffers to indicate
...
...
dlls/quartz/waveparser.c
View file @
633ee950
...
...
@@ -87,7 +87,7 @@ static HRESULT WAVEParser_Sample(LPVOID iface, IMediaSample * pSample, DWORD_PTR
cbSrcStream
=
IMediaSample_GetActualDataLength
(
pSample
);
/* Flush occuring */
/* Flush occur
r
ing */
if
(
cbSrcStream
==
0
)
{
TRACE
(
".. Why do I need you?
\n
"
);
...
...
dlls/rsaenh/mpi.c
View file @
633ee950
...
...
@@ -231,7 +231,7 @@ fast_mp_montgomery_reduce (mp_int * x, const mp_int * n, mp_digit rho)
/* a = a + mu * m * b**i
*
* This is computed in place and on the fly. The multiplication
* by b**i is handled by offseting which columns the results
* by b**i is handled by offset
t
ing which columns the results
* are added to.
*
* Note the comba method normally doesn't handle carries in the
...
...
dlls/shell32/tests/shelllink.c
View file @
633ee950
...
...
@@ -17,7 +17,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* This is a test program for the SHGet{Special}Folder{Path|Location} functions
* of shell32, that get either a filesytem path or a LPITEMIDLIST (shell
* of shell32, that get either a filesy
s
tem path or a LPITEMIDLIST (shell
* namespace) path for a given folder (CSIDL value).
*
*/
...
...
dlls/shell32/tests/shellpath.c
View file @
633ee950
...
...
@@ -17,7 +17,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* This is a test program for the SHGet{Special}Folder{Path|Location} functions
* of shell32, that get either a filesytem path or a LPITEMIDLIST (shell
* of shell32, that get either a filesy
s
tem path or a LPITEMIDLIST (shell
* namespace) path for a given folder (CSIDL value).
*
* FIXME:
...
...
dlls/twain_32/dsm_ctrl.c
View file @
633ee950
...
...
@@ -202,7 +202,7 @@ TW_UINT16 TWAIN_OpenDS (pTW_IDENTITY pOrigin, TW_MEMREF pData)
TRACE
(
"DG_CONTROL/DAT_IDENTITY/MSG_OPENDS
\n
"
);
TRACE
(
"pIdentity is %s
\n
"
,
pIdentity
->
ProductName
);
if
(
DSM_currentState
!=
3
)
{
FIXME
(
"seq err
r
or
\n
"
);
FIXME
(
"seq error
\n
"
);
DSM_twCC
=
TWCC_SEQERROR
;
return
TWRC_FAILURE
;
}
...
...
dlls/wined3d/state.c
View file @
633ee950
...
...
@@ -2538,7 +2538,7 @@ static void tex_bumpenvmat(DWORD state, IWineD3DStateBlockImpl *stateblock, Wine
}
else
if
(
GL_SUPPORT
(
NV_TEXTURE_SHADER2
))
{
/* Direct3D sets the matrix in the stage reading the perturbation map. The result is used to
* offset the destination stage(always stage + 1 in d3d). In GL_NV_texture_shader, the bump
* map offseting is done in the stage reading the bump mapped texture, and the perturbation
* map offset
t
ing is done in the stage reading the bump mapped texture, and the perturbation
* map is read from a specified source stage(always stage - 1 for d3d). Thus set the matrix
* for stage + 1. Keep the nvrc tex unit mapping in mind too
*/
...
...
dlls/wined3d/swapchain.c
View file @
633ee950
...
...
@@ -183,7 +183,7 @@ static HRESULT WINAPI IWineD3DSwapChainImpl_Present(IWineD3DSwapChain *iface, CO
if
(
pSourceRect
||
pDestRect
)
FIXME
(
"Unhandled present options %p/%p
\n
"
,
pSourceRect
,
pDestRect
);
/* TODO: If only source rect or dest rect are supplied then clip the window to match */
TRACE
(
"preseting HDC %p
\n
"
,
This
->
context
[
0
]
->
hdc
);
TRACE
(
"preset
t
ing HDC %p
\n
"
,
This
->
context
[
0
]
->
hdc
);
/* Don't call checkGLcall, as glGetError is not applicable here */
if
(
hDestWindowOverride
&&
This
->
win_handle
!=
hDestWindowOverride
)
{
...
...
dlls/winmm/lolvldrv.c
View file @
633ee950
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
/*
* MMSYTEM low level drivers handling functions
* MMSY
S
TEM low level drivers handling functions
*
* Copyright 1999 Eric Pouech
*
...
...
dlls/winmm/mmsystem.c
View file @
633ee950
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
/*
* MMSYTEM functions
* MMSY
S
TEM functions
*
* Copyright 1993 Martin Ayotte
* 1998-2003 Eric Pouech
...
...
dlls/winmm/playsound.c
View file @
633ee950
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
/*
* MMSYTEM functions
* MMSY
S
TEM functions
*
* Copyright 1993 Martin Ayotte
* 1998-2002 Eric Pouech
...
...
tools/widl/parser.y
View file @
633ee950
...
...
@@ -1592,7 +1592,7 @@ static void set_type(var_t *v, decl_spec_t *decl_spec, const declarator_t *decl,
}
}
/* v->type is currently pointing t
he
the type on the left-side of the
/* v->type is currently pointing t
o
the type on the left-side of the
* declaration, so we need to fix this up so that it is the return type of the
* function and make v->type point to the function side of the declaration */
if (func_type)
...
...
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