Michael Stefaniuc : msctf: Remove useless cast to self.

Alexandre Julliard julliard at winehq.org
Fri May 17 16:10:15 CDT 2019


Module: wine
Branch: master
Commit: 61aea5a9879f41224022d4775cce28d28618ea89
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=61aea5a9879f41224022d4775cce28d28618ea89

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Fri May 17 20:34:39 2019 +0200

msctf: Remove useless cast to self.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msctf/context.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msctf/context.c b/dlls/msctf/context.c
index 452895c..ff67d38 100644
--- a/dlls/msctf/context.c
+++ b/dlls/msctf/context.c
@@ -852,7 +852,7 @@ static HRESULT WINAPI TextStoreACPSink_OnLockGranted(ITextStoreACPSink *iface,
         /*TODO: implement ITfEditRecord */
         SINK_FOR_EACH(cursor, &This->pTextEditSink, ITfTextEditSink, sink)
         {
-            ITfTextEditSink_OnEndEdit(sink, (ITfContext*) &This->ITfContext_iface, sc, NULL);
+            ITfTextEditSink_OnEndEdit(sink, &This->ITfContext_iface, sc, NULL);
         }
         sinkcookie = remove_Cookie(sc);
     }




More information about the wine-cvs mailing list