Nikolay Sivov : mlang: Use proper interface call instead of implementation function.

Alexandre Julliard julliard at winehq.org
Fri Sep 28 11:39:03 CDT 2012


Module: wine
Branch: master
Commit: d442f5fffaf3c3b77514b378eadcafbbc41a1a82
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d442f5fffaf3c3b77514b378eadcafbbc41a1a82

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Sep 27 22:34:21 2012 +0400

mlang: Use proper interface call instead of implementation function.

---

 dlls/mlang/mlang.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mlang/mlang.c b/dlls/mlang/mlang.c
index ba1feba..a361bc9 100644
--- a/dlls/mlang/mlang.c
+++ b/dlls/mlang/mlang.c
@@ -1878,7 +1878,7 @@ static HRESULT WINAPI fnIMLangFontLink_GetStrCodePages(
         DWORD cp;
         HRESULT ret;
 
-        ret = fnIMLangFontLink_GetCharCodePages(iface, pszSrc[i], &cp);
+        ret = IMLangFontLink_GetCharCodePages(iface, pszSrc[i], &cp);
         if (ret != S_OK) return E_FAIL;
 
         if (!cps) cps = cp;




More information about the wine-cvs mailing list