msctf: Return S_OK in TextStoreACPSink_OnTextChange.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Aric Stewart <aric@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1c6e71d62a
commit
a78d411b38
|
@ -758,7 +758,7 @@ static HRESULT WINAPI TextStoreACPSink_OnTextChange(ITextStoreACPSink *iface,
|
||||||
{
|
{
|
||||||
Context *This = impl_from_ITextStoreACPSink(iface);
|
Context *This = impl_from_ITextStoreACPSink(iface);
|
||||||
FIXME("STUB:(%p)\n",This);
|
FIXME("STUB:(%p)\n",This);
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI TextStoreACPSink_OnSelectionChange(ITextStoreACPSink *iface)
|
static HRESULT WINAPI TextStoreACPSink_OnSelectionChange(ITextStoreACPSink *iface)
|
||||||
|
|
Loading…
Reference in New Issue