Michael Stefaniuc : msctf: Remove useless cast to self.
Module: wine Branch: master Commit: 61aea5a9879f41224022d4775cce28d28618ea89 URL: https://source.winehq.org/git/wine.git/?a=commit;h=61aea5a9879f41224022d4775... Author: Michael Stefaniuc <mstefani(a)winehq.org> Date: Fri May 17 20:34:39 2019 +0200 msctf: Remove useless cast to self. Signed-off-by: Michael Stefaniuc <mstefani(a)winehq.org> Signed-off-by: Alexandre Julliard <julliard(a)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); }
participants (1)
-
Alexandre Julliard