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
fda899a7
Commit
fda899a7
authored
Oct 11, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
63a87554
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
security.c
dlls/advapi32/tests/security.c
+1
-1
pixelshader.c
dlls/wined3d/pixelshader.c
+1
-1
dib.c
dlls/winex11.drv/dib.c
+2
-2
wineboot.c
programs/wineboot/wineboot.c
+1
-1
No files found.
dlls/advapi32/tests/security.c
View file @
fda899a7
...
...
@@ -1981,7 +1981,7 @@ static void test_ConvertSecurityDescriptorToString()
return
;
}
/* It seems Windows XP add an extra character to the length of the string for each ACE in an ACL. We
/* It seems Windows XP add
s
an extra character to the length of the string for each ACE in an ACL. We
* don't replicate this feature so we only test len >= strlen+1. */
#define CHECK_RESULT_AND_FREE(exp_str) \
ok(strcmp(string, (exp_str)) == 0, "String mismatch (expected \"%s\", got \"%s\")\n", (exp_str), string); \
...
...
dlls/wined3d/pixelshader.c
View file @
fda899a7
...
...
@@ -632,7 +632,7 @@ static HRESULT WINAPI IWineD3DPixelShaderImpl_CompileShader(IWineD3DPixelShader
/* FIXME: validate reg_maps against OpenGL */
}
/* Reset fields tracking stateblock values be
e
ing hardcoded in the shader */
/* Reset fields tracking stateblock values being hardcoded in the shader */
This
->
baseShader
.
num_sampled_samplers
=
0
;
/* Generate the HW shader */
...
...
dlls/winex11.drv/dib.c
View file @
fda899a7
...
...
@@ -3621,7 +3621,7 @@ static int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
#ifdef HAVE_LIBXXSHM
/* We must not call XShmGetImage() with a bitmap which is bigger than the avilable area.
/* We must not call XShmGetImage() with a bitmap which is bigger than the av
a
ilable area.
If we do, XShmGetImage() will fail (X exception), as it checks for this internally. */
if
((
descr
->
image
&&
descr
->
useShm
)
&&
(
bmpImage
->
width
<=
(
descr
->
width
-
descr
->
xSrc
))
&&
(
bmpImage
->
height
<=
(
descr
->
height
-
descr
->
ySrc
)))
...
...
@@ -3988,7 +3988,7 @@ INT X11DRV_GetDIBits( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, UINT startscan,
height
=
descr
.
lines
;
if
(
height
<
0
)
height
=
-
height
;
if
(
lines
>
height
)
lines
=
height
;
/* Top-down images have a negative biHeight, the scanlines of these
s
images
/* Top-down images have a negative biHeight, the scanlines of these images
* were inverted in X11DRV_DIB_GetImageBits_xx
* To prevent this we simply change the sign of lines
* (the number of scan lines to copy).
...
...
programs/wineboot/wineboot.c
View file @
fda899a7
...
...
@@ -19,7 +19,7 @@
/* Wine "bootup" handler application
*
* This app handles the various "hooks" windows allows for applications to perform
* as part of the bootstrap process. These
s are roughly de
vided into three types.
* as part of the bootstrap process. These
are roughly di
vided into three types.
* Knowledge base articles that explain this are 137367, 179365, 232487 and 232509.
* Also, 119941 has some info on grpconv.exe
* The operations performed are (by order of execution):
...
...
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