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
222c1679
Commit
222c1679
authored
Sep 28, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
41dd56cb
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
18 deletions
+18
-18
header.c
dlls/comctl32/header.c
+1
-1
listview.c
dlls/comctl32/listview.c
+4
-4
listview.c
dlls/comctl32/tests/listview.c
+2
-2
sip.c
dlls/crypt32/tests/sip.c
+2
-2
ungif.c
dlls/oleaut32/ungif.c
+3
-3
devinst.c
dlls/setupapi/tests/devinst.c
+1
-1
surface.c
dlls/wined3d/surface.c
+1
-1
vertexbuffer.c
dlls/wined3d/vertexbuffer.c
+1
-1
opengl.c
dlls/winex11.drv/opengl.c
+3
-3
No files found.
dlls/comctl32/header.c
View file @
222c1679
...
...
@@ -1829,7 +1829,7 @@ HEADER_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
HEADER_DrawTrackLine
(
hwnd
,
hdc
,
infoPtr
->
xOldTrack
);
ReleaseDC
(
hwnd
,
hdc
);
iTrackWidth
=
infoPtr
->
xOldTrack
-
infoPtr
->
items
[
infoPtr
->
iMoveItem
].
rect
.
left
;
/* FIXME: should stop tracking if HDN_TRACK return
e
s TRUE */
/* FIXME: should stop tracking if HDN_TRACK returns TRUE */
HEADER_SendNotifyWithIntFieldT
(
hwnd
,
HDN_TRACKW
,
infoPtr
->
iMoveItem
,
HDI_WIDTH
,
iTrackWidth
);
}
...
...
dlls/comctl32/listview.c
View file @
222c1679
...
...
@@ -5146,7 +5146,7 @@ static HIMAGELIST LISTVIEW_GetImageList(LISTVIEW_INFO *infoPtr, INT nImageList)
* [I] hwnd : window handle
* [IO] lpLVItem : item info
* [I] isW : if TRUE, then lpLVItem is a LPLVITEMW,
* if FALSE, the lpLVItem is a LPLVITEMA.
* if FALSE, the
n
lpLVItem is a LPLVITEMA.
*
* NOTE:
* This is the internal 'GetItem' interface -- it tries to
...
...
@@ -5203,7 +5203,7 @@ static BOOL LISTVIEW_GetItemT(LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, BOOL i
{
dispInfo
.
item
.
state
=
0
;
/* apprently, we should not callback for lParam in LVS_OWNERDATA */
/* app
a
rently, we should not callback for lParam in LVS_OWNERDATA */
if
((
lpLVItem
->
mask
&
~
(
LVIF_STATE
|
LVIF_PARAM
))
||
infoPtr
->
uCallbackMask
)
{
/* NOTE: copy only fields which we _know_ are initialized, some apps
...
...
@@ -5399,7 +5399,7 @@ static BOOL LISTVIEW_GetItemT(LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, BOOL i
* [I] hwnd : window handle
* [IO] lpLVItem : item info
* [I] isW : if TRUE, then lpLVItem is a LPLVITEMW,
* if FALSE, the lpLVItem is a LPLVITEMA.
* if FALSE, the
n
lpLVItem is a LPLVITEMA.
*
* NOTE:
* This is the external 'GetItem' interface -- it properly copies
...
...
@@ -6630,7 +6630,7 @@ fail:
* [I] infoPtr : valid pointer to the listview structure
* [I] nColumn : column index
* [I] lpColumn : column attributes
* [I] isW: if TRUE, the lpColumn is a LPLVCOLUMNW, else it is a LPLVCOLUMNA
* [I] isW: if TRUE, the
n
lpColumn is a LPLVCOLUMNW, else it is a LPLVCOLUMNA
*
* RETURN:
* SUCCESS : TRUE
...
...
dlls/comctl32/tests/listview.c
View file @
222c1679
...
...
@@ -147,7 +147,7 @@ static void test_checkboxes(void)
r
=
SendMessage
(
hwnd
,
LVM_GETITEMA
,
0
,
(
LPARAM
)
&
item
);
ok
(
item
.
state
==
0x1ccc
,
"state %x
\n
"
,
item
.
state
);
/* Now add an item without specifying a state and check that it
'
s state goes to 0x1000 */
/* Now add an item without specifying a state and check that its state goes to 0x1000 */
item
.
iItem
=
2
;
item
.
mask
=
LVIF_TEXT
;
item
.
state
=
0
;
...
...
@@ -161,7 +161,7 @@ static void test_checkboxes(void)
r
=
SendMessage
(
hwnd
,
LVM_GETITEMA
,
0
,
(
LPARAM
)
&
item
);
ok
(
item
.
state
==
0x1000
,
"state %x
\n
"
,
item
.
state
);
/* Add a further item this time specifying a state and still it
'
s state goes to 0x1000 */
/* Add a further item this time specifying a state and still its state goes to 0x1000 */
item
.
iItem
=
3
;
item
.
mask
=
LVIF_TEXT
|
LVIF_STATE
;
item
.
stateMask
=
0xffff
;
...
...
dlls/crypt32/tests/sip.c
View file @
222c1679
...
...
@@ -149,9 +149,9 @@ static void test_SIPRetrieveSubjectGUID(void)
ok
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %ld.
\n
"
,
GetLastError
());
/* Test with a non
-
existent file (hopefully) */
/* Test with a nonexistent file (hopefully) */
SetLastError
(
0xdeadbeef
);
/* Set subject to something other than zero
'
s */
/* Set subject to something other than zeros */
memset
(
&
subject
,
1
,
sizeof
(
GUID
));
ret
=
CryptSIPRetrieveSubjectGuid
(
deadbeef
,
NULL
,
&
subject
);
ok
(
!
ret
,
"Expected CryptSIPRetrieveSubjectGuid to fail
\n
"
);
...
...
dlls/oleaut32/ungif.c
View file @
222c1679
...
...
@@ -713,9 +713,9 @@ DGifGetPrefixChar(GifPrefixType *Prefix,
/******************************************************************************
* The LZ decompression input routine:
* This routine is respons
a
ble for the decompression of the bit stream from
* This routine is respons
i
ble for the decompression of the bit stream from
* 8 bits (bytes) packets, into the real codes.
* Returns GIF_OK if read succesfully.
* Returns GIF_OK if read succes
s
fully.
*****************************************************************************/
static
int
DGifDecompressInput
(
GifFileType
*
GifFile
,
...
...
@@ -767,7 +767,7 @@ DGifDecompressInput(GifFileType * GifFile,
* This routines read one gif data block at a time and buffers it internally
* so that the decompression routine could access it.
* The routine returns the next byte from its internal buffer (or read next
* block in if buffer empty) and returns GIF_OK if succesful.
* block in if buffer empty) and returns GIF_OK if succes
s
ful.
*****************************************************************************/
static
int
DGifBufferedInput
(
GifFileType
*
GifFile
,
...
...
dlls/setupapi/tests/devinst.c
View file @
222c1679
...
...
@@ -90,7 +90,7 @@ static void test_SetupDiOpenClassRegKeyExA(void)
static
const
CHAR
guidString
[]
=
"{6a55b5a4-3f65-11db-b704-0011955c2bdb}"
;
HKEY
hkey
;
/* Check return value for non
-
existent key */
/* Check return value for nonexistent key */
hkey
=
pSetupDiOpenClassRegKeyExA
(
&
guid
,
KEY_ALL_ACCESS
,
DIOCR_INSTALLER
,
NULL
,
NULL
);
ok
(
hkey
==
INVALID_HANDLE_VALUE
,
...
...
dlls/wined3d/surface.c
View file @
222c1679
...
...
@@ -2864,7 +2864,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_BltFast(IWineD3DSurface *iface, DWORD dstx, D
DstRect
.
right
=
dstx
+
SrcRect
.
right
-
SrcRect
.
left
;
DstRect
.
bottom
=
dsty
+
SrcRect
.
bottom
-
SrcRect
.
top
;
/* Convert BltFast flags into Btl ones because it is called from SurfaceImpl_Blt aswell */
/* Convert BltFast flags into Btl ones because it is called from SurfaceImpl_Blt as
well */
if
(
trans
&
DDBLTFAST_SRCCOLORKEY
)
Flags
|=
DDBLT_KEYSRC
;
if
(
trans
&
DDBLTFAST_DESTCOLORKEY
)
...
...
dlls/wined3d/vertexbuffer.c
View file @
222c1679
...
...
@@ -241,7 +241,7 @@ inline BOOL WINAPI IWineD3DVertexBufferImpl_FindDecl(IWineD3DVertexBufferImpl *T
* If some stuff does not exist in the buffer, then lpData, dwStride and dwType are memsetted to 0. So if the semantic didn't exist before
* and does not exist now all 3 values will be equal(=0).
*
* Checking the lpData field alone is not enough
t, because data may appear at offset 0 in the buffer. This is the same location as nonexista
nt
* Checking the lpData field alone is not enough
, because data may appear at offset 0 in the buffer. This is the same location as nonexiste
nt
* data uses, so we have to check the type and stride too. Colors can be at offset 0 too, because it is perfectly fine to render from 2 or more
* buffers at the same time and get the position from one and the color from the other buffer.
*/
...
...
dlls/winex11.drv/opengl.c
View file @
222c1679
...
...
@@ -403,7 +403,7 @@ LOAD_FUNCPTR(glPixelStorei)
* 8762 drivers support 1.3 for the server and 1.4 for the client and they support lots of extensions.
* Unfortunately it is much more complicated for Mesa/DRI-based drivers and ATI's drivers.
* Both sets of drivers report a server version of 1.2 and the client version can be 1.3 or 1.4.
* Further
in case of atleast ATI's drivers
one crucial extension needed for our pixel format code
* Further
, in case of at least ATI's drivers,
one crucial extension needed for our pixel format code
* is only available in the list of server extensions and not in the client list.
*
* The versioning checks below try to take into account the comments from above.
...
...
@@ -2029,7 +2029,7 @@ GLboolean WINAPI X11DRV_wglChoosePixelFormatARB(HDC hdc, const int *piAttribILis
int
tmp_vis_id
;
int
pfmt_it
=
0
;
int
offscreen_index
=
1
;
/* Start at one because we al
l
ways have a main visual at iPixelFormat=1 */
int
offscreen_index
=
1
;
/* Start at one because we always have a main visual at iPixelFormat=1 */
TRACE
(
"(%p, %p, %p, %d, %p, %p): hackish
\n
"
,
hdc
,
piAttribIList
,
pfAttribFList
,
nMaxFormats
,
piFormats
,
nNumFormats
);
if
(
NULL
!=
pfAttribFList
)
{
...
...
@@ -2103,7 +2103,7 @@ GLboolean WINAPI X11DRV_wglChoosePixelFormatARB(HDC hdc, const int *piAttribILis
/* The format of Wine's main visual is stored at index 1 of our WGL format table.
* At higher indices we store offscreen rendering formats (visualid=0). Below we calculate
* the index of the offscreen format. We do this by counting the number of offscreen formats
* which we see u
pto reaching
our target format. */
* which we see u
ntil we reach
our target format. */
if
(
tmp_vis_id
==
0
)
offscreen_index
++
;
...
...
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