msctf: Get rid of a cast from a COM object to an iface.
Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c65325c584
commit
8e2db1dfe1
|
@ -1488,8 +1488,8 @@ static HRESULT EnumTfDocumentMgr_Constructor(struct list* head, IEnumTfDocumentM
|
|||
This->head = head;
|
||||
This->index = list_head(This->head);
|
||||
|
||||
TRACE("returning %p\n", This);
|
||||
*ppOut = (IEnumTfDocumentMgrs*)This;
|
||||
TRACE("returning %p\n", &This->IEnumTfDocumentMgrs_iface);
|
||||
*ppOut = &This->IEnumTfDocumentMgrs_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue