msctf: Quiet a spammy fixme in InputProcessorProfileMgr_GetActiveProfile.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50744
Signed-off-by: Dmitry Kislyuk <dimaki@rocketmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 0712b6b1a0
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
c4cf95c6f9
commit
d94b4a494b
|
@ -866,8 +866,14 @@ static HRESULT WINAPI InputProcessorProfileMgr_UnregisterProfile(ITfInputProcess
|
||||||
static HRESULT WINAPI InputProcessorProfileMgr_GetActiveProfile(ITfInputProcessorProfileMgr *iface, REFGUID catid,
|
static HRESULT WINAPI InputProcessorProfileMgr_GetActiveProfile(ITfInputProcessorProfileMgr *iface, REFGUID catid,
|
||||||
TF_INPUTPROCESSORPROFILE *pProfile)
|
TF_INPUTPROCESSORPROFILE *pProfile)
|
||||||
{
|
{
|
||||||
InputProcessorProfiles *This = impl_from_ITfInputProcessorProfileMgr(iface);
|
static int once;
|
||||||
FIXME("(%p)->(%s %p)\n", This, debugstr_guid(catid), pProfile);
|
|
||||||
|
if (!once++)
|
||||||
|
{
|
||||||
|
InputProcessorProfiles *This = impl_from_ITfInputProcessorProfileMgr(iface);
|
||||||
|
FIXME("(%p)->(%s %p)\n", This, debugstr_guid(catid), pProfile);
|
||||||
|
}
|
||||||
|
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue