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
653354ab
Commit
653354ab
authored
Jul 03, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 03, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
28139bce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
iconcache.c
dlls/shell32/iconcache.c
+3
-3
shelllink.c
dlls/shell32/tests/shelllink.c
+4
-2
edit.c
dlls/user32/tests/edit.c
+1
-1
No files found.
dlls/shell32/iconcache.c
View file @
653354ab
...
...
@@ -880,11 +880,11 @@ INT WINAPI SHGetIconOverlayIndexW(LPCWSTR pszIconPath, INT iIconIndex)
/****************************************************************************
* SHGetStockIconInfo [SHELL32.@]
*
* Receive information
s
for builtin icons
* Receive information for builtin icons
*
* PARAMS
* id [I] selected icon-id to get information
s
* flags [I] select
informations
to receive
* id [I] selected icon-id to get information
for
* flags [I] select
s the information
to receive
* sii [IO] SHSTOCKICONINFO structure to fill
*
* RETURNS
...
...
dlls/shell32/tests/shelllink.c
View file @
653354ab
...
...
@@ -1042,8 +1042,10 @@ static void test_SHGetStockIconInfo(void)
if
(
atleast_win7
&&
(
i
==
(
SIID_MAX_ICONS
-
1
))
&&
broken
(
hr
==
E_INVALIDARG
))
{
/* off by one windows bug: there are SIID_MAX_ICONS icons from 0 upto
SIID_MAX_ICONS-1 on win8, but the last one is missing on win7 */
/* Off by one windows bug: there are SIID_MAX_ICONS icons from 0
* up to SIID_MAX_ICONS-1 on Windows 8, but the last one is missing
* on Windows 7.
*/
trace
(
"%3d: got E_INVALIDARG (windows bug: off by one)
\n
"
,
i
);
}
else
if
(
atleast_win7
&&
(
i
<
(
SIID_MAX_ICONS
)))
...
...
dlls/user32/tests/edit.c
View file @
653354ab
...
...
@@ -2628,7 +2628,7 @@ static void test_EM_GETHANDLE(void)
len
=
SendMessageA
(
hEdit
,
WM_GETTEXTLENGTH
,
0
,
0
);
ok
((
r
==
1
)
&&
(
len
==
lstrlenA
(
str1
)),
"got %d and %d (expected 1 and %d)
\n
"
,
r
,
len
,
lstrlenA
(
str1
));
/* everything is normal upto EM_GETHANDLE */
/* everything is normal up
to EM_GETHANDLE */
hmem
=
(
HGLOBAL
)
SendMessage
(
hEdit
,
EM_GETHANDLE
,
0
,
0
);
/* Some messages still work while other messages fail.
After LocalFree the memory handle, messages can crash the app */
...
...
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