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
6394a153
Commit
6394a153
authored
Jun 17, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
9769816b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
dsurface.c
dlls/ddraw/tests/dsurface.c
+1
-1
olepicture.c
dlls/oleaut32/tests/olepicture.c
+1
-1
variant.c
dlls/oleaut32/variant.c
+1
-1
v4l.c
dlls/qcap/v4l.c
+1
-1
shlfolder.c
dlls/shell32/tests/shlfolder.c
+2
-2
No files found.
dlls/ddraw/tests/dsurface.c
View file @
6394a153
...
...
@@ -129,7 +129,7 @@ static void MipMapCreationTest()
/* Fourth mipmap creation test: same as above with a different texture
size.
The purpose is to verify that the number of generated mipmaps is
depend
a
nt on the smallest dimension. */
depend
e
nt on the smallest dimension. */
memset
(
&
ddsd
,
0
,
sizeof
(
DDSURFACEDESC
));
ddsd
.
dwSize
=
sizeof
(
ddsd
);
ddsd
.
dwFlags
=
DDSD_CAPS
|
DDSD_WIDTH
|
DDSD_HEIGHT
;
...
...
dlls/oleaut32/tests/olepicture.c
View file @
6394a153
...
...
@@ -210,7 +210,7 @@ static void test_empty_image() {
LARGE_INTEGER
seekto
;
short
type
;
/* Empty image. Happens occasionaly in VB programs. */
/* Empty image. Happens occasional
l
y in VB programs. */
hglob
=
GlobalAlloc
(
0
,
8
);
data
=
GlobalLock
(
hglob
);
memcpy
(
data
,
"lt
\0\0
"
,
4
);
...
...
dlls/oleaut32/variant.c
View file @
6394a153
...
...
@@ -2818,7 +2818,7 @@ HRESULT WINAPI VarAdd(LPVARIANT left, LPVARIANT right, LPVARIANT result)
V_VT
(
result
)
=
VT_NULL
;
goto
end
;
case
VT_DISPATCH
:
FIXME
(
"can
not handle variant type VT_DISPATCH
\n
"
);
FIXME
(
"cannot handle variant type VT_DISPATCH
\n
"
);
hres
=
DISP_E_TYPEMISMATCH
;
goto
end
;
case
VT_EMPTY
:
...
...
dlls/qcap/v4l.c
View file @
6394a153
...
...
@@ -547,7 +547,7 @@ static void V4l_GetFrame(Capture * capBox, unsigned char ** pInput)
while
((
retval
=
read
(
capBox
->
fd
,
capBox
->
grab_data
,
capBox
->
imagesize
))
==
-
1
)
if
(
errno
!=
EAGAIN
)
break
;
if
(
retval
==
-
1
)
WARN
(
"Error occured while reading from device: %s
\n
"
,
strerror
(
errno
));
WARN
(
"Error occur
r
ed while reading from device: %s
\n
"
,
strerror
(
errno
));
*
pInput
=
capBox
->
grab_data
;
}
}
...
...
dlls/shell32/tests/shlfolder.c
View file @
6394a153
...
...
@@ -258,7 +258,7 @@ static void test_GetDisplayName(void)
if
(
hTestFile
==
INVALID_HANDLE_VALUE
)
return
;
CloseHandle
(
hTestFile
);
/* Getting a itemidlist for the file. */
/* Getting a
n
itemidlist for the file. */
hr
=
SHGetDesktopFolder
(
&
psfDesktop
);
ok
(
SUCCEEDED
(
hr
),
"SHGetDesktopFolder failed! hr = %08lx
\n
"
,
hr
);
if
(
FAILED
(
hr
))
return
;
...
...
@@ -270,7 +270,7 @@ static void test_GetDisplayName(void)
return
;
}
/* It seems as if we can
not bind to regular files on windows, but only directories.
/* It seems as if we cannot bind to regular files on windows, but only directories.
*/
hr
=
IShellFolder_BindToObject
(
psfDesktop
,
pidlTestFile
,
NULL
,
&
IID_IUnknown
,
(
VOID
**
)
&
psfFile
);
todo_wine
{
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_FILE_NOT_FOUND
),
"hr = %08lx
\n
"
,
hr
);
}
...
...
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