msctf: Implement ITfRange::GetContext.

This commit is contained in:
Aric Stewart 2009-05-18 14:48:26 -05:00 committed by Alexandre Julliard
parent d0ef9886c3
commit bdd4e0b48b
1 changed files with 5 additions and 2 deletions

View File

@ -271,8 +271,11 @@ static HRESULT WINAPI Range_Clone(ITfRange *iface, ITfRange **ppClone)
static HRESULT WINAPI Range_GetContext(ITfRange *iface, ITfContext **ppContext)
{
Range *This = (Range *)iface;
FIXME("STUB:(%p)\n",This);
return E_NOTIMPL;
TRACE("(%p)\n",This);
if (!ppContext)
return E_INVALIDARG;
*ppContext = This->pITfContext;
return S_OK;
}
static const ITfRangeVtbl Range_RangeVtbl =