[3/5] mlang: Use proper interface call instead of implementation function

Nikolay Sivov nsivov at codeweavers.com
Fri Sep 28 03:34:43 CDT 2012


Use proper interface call instead of implementation function
-------------- next part --------------
>From c1a621e659a28cfefcf727d41bf7939fff881227 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <nsivov at codeweavers.com>
Date: Thu, 27 Sep 2012 22:34:21 +0400
Subject: [PATCH 3/6] 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;
-- 
1.5.6.5




More information about the wine-patches mailing list