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
64e94c22
Commit
64e94c22
authored
Aug 19, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Call interface methods properly.
parent
7f4d634e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mlang.c
dlls/mlang/mlang.c
+3
-3
No files found.
dlls/mlang/mlang.c
View file @
64e94c22
...
...
@@ -2883,7 +2883,7 @@ static HRESULT WINAPI fnIMultiLanguage2_GetLcidFromRfc1766(
if
(
!
pLocale
||
!
bstrRfc1766
)
return
E_INVALIDARG
;
hr
=
IMultiLanguage
2
_EnumRfc1766
(
iface
,
0
,
&
rfc1766
);
hr
=
IMultiLanguage
3
_EnumRfc1766
(
iface
,
0
,
&
rfc1766
);
if
(
FAILED
(
hr
))
return
hr
;
...
...
@@ -3094,7 +3094,7 @@ static HRESULT WINAPI fnIMultiLanguage2_ValidateCodePage(
UINT
uiCodePage
,
HWND
hwnd
)
{
return
IMultiLanguage
2
_ValidateCodePageEx
(
iface
,
uiCodePage
,
hwnd
,
0
);
return
IMultiLanguage
3
_ValidateCodePageEx
(
iface
,
uiCodePage
,
hwnd
,
0
);
}
static
HRESULT
WINAPI
fnIMultiLanguage2_GetCodePageDescription
(
...
...
@@ -3132,7 +3132,7 @@ static HRESULT WINAPI fnIMultiLanguage2_IsCodePageInstallable(
TRACE
(
"%u
\n
"
,
uiCodePage
);
/* FIXME: the installable set is usually larger than the set of valid codepages */
return
IMultiLanguage
2
_ValidateCodePageEx
(
iface
,
uiCodePage
,
NULL
,
CPIOD_PEEK
);
return
IMultiLanguage
3
_ValidateCodePageEx
(
iface
,
uiCodePage
,
NULL
,
CPIOD_PEEK
);
}
static
HRESULT
WINAPI
fnIMultiLanguage2_SetMimeDBSource
(
...
...
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