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
d3f20ec1
Commit
d3f20ec1
authored
Dec 08, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Dec 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Fix test for non-english IE MUI.
parent
957281a8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
webbrowser.c
dlls/shdocvw/tests/webbrowser.c
+3
-0
No files found.
dlls/shdocvw/tests/webbrowser.c
View file @
d3f20ec1
...
...
@@ -1818,7 +1818,10 @@ static void test_ie_funcs(IUnknown *unk)
/* Name */
hres
=
IWebBrowser2_get_Name
(
wb
,
&
sName
);
ok
(
hres
==
S_OK
,
"getName failed: %08x, expected S_OK
\n
"
,
hres
);
if
(
PRIMARYLANGID
(
LANGIDFROMLCID
(
GetThreadLocale
()))
==
LANG_ENGLISH
)
ok
(
!
strcmp_wa
(
sName
,
"Microsoft Web Browser Control"
),
"got '%s', expected 'Microsoft Web Browser Control'
\n
"
,
wine_dbgstr_w
(
sName
));
else
/* Non-English cannot be blank. */
ok
(
sName
!=
NULL
,
"get_Name return a NULL string.
\n
"
);
SysFreeString
(
sName
);
/* Quit */
...
...
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