msctf: Use FAILED instead of !SUCCEDED.
This commit is contained in:
parent
b49d541cb5
commit
2a11f2df47
@ -430,7 +430,7 @@ static WINAPI HRESULT ContextSource_AdviseSink(ITfSource *iface,
|
|||||||
es = HeapAlloc(GetProcessHeap(),0,sizeof(ContextSink));
|
es = HeapAlloc(GetProcessHeap(),0,sizeof(ContextSink));
|
||||||
if (!es)
|
if (!es)
|
||||||
return E_OUTOFMEMORY;
|
return E_OUTOFMEMORY;
|
||||||
if (!SUCCEEDED(IUnknown_QueryInterface(punk, riid, (LPVOID*)&es->interfaces.pITfTextEditSink)))
|
if (FAILED(IUnknown_QueryInterface(punk, riid, (LPVOID *)&es->interfaces.pITfTextEditSink)))
|
||||||
{
|
{
|
||||||
HeapFree(GetProcessHeap(),0,es);
|
HeapFree(GetProcessHeap(),0,es);
|
||||||
return CONNECT_E_CANNOTCONNECT;
|
return CONNECT_E_CANNOTCONNECT;
|
||||||
|
@ -615,7 +615,7 @@ static WINAPI HRESULT IPPSource_AdviseSink(ITfSource *iface,
|
|||||||
ipps = HeapAlloc(GetProcessHeap(),0,sizeof(InputProcessorProfilesSink));
|
ipps = HeapAlloc(GetProcessHeap(),0,sizeof(InputProcessorProfilesSink));
|
||||||
if (!ipps)
|
if (!ipps)
|
||||||
return E_OUTOFMEMORY;
|
return E_OUTOFMEMORY;
|
||||||
if (!SUCCEEDED(IUnknown_QueryInterface(punk, riid, (LPVOID*)&ipps->interfaces.pITfLanguageProfileNotifySink)))
|
if (FAILED(IUnknown_QueryInterface(punk, riid, (LPVOID *)&ipps->interfaces.pITfLanguageProfileNotifySink)))
|
||||||
{
|
{
|
||||||
HeapFree(GetProcessHeap(),0,ipps);
|
HeapFree(GetProcessHeap(),0,ipps);
|
||||||
return CONNECT_E_CANNOTCONNECT;
|
return CONNECT_E_CANNOTCONNECT;
|
||||||
|
@ -1186,7 +1186,7 @@ static void test_startSession(void)
|
|||||||
|
|
||||||
cnt = check_context_refcount(cxt3);
|
cnt = check_context_refcount(cxt3);
|
||||||
hr = ITfDocumentMgr_Push(g_dm, cxt3);
|
hr = ITfDocumentMgr_Push(g_dm, cxt3);
|
||||||
ok(!SUCCEEDED(hr),"Push Succeeded\n");
|
ok(FAILED(hr),"Push Succeeded\n");
|
||||||
ok(check_context_refcount(cxt3) == cnt, "Ref changed\n");
|
ok(check_context_refcount(cxt3) == cnt, "Ref changed\n");
|
||||||
|
|
||||||
cnt = check_context_refcount(cxt2);
|
cnt = check_context_refcount(cxt2);
|
||||||
@ -1221,7 +1221,7 @@ static void test_startSession(void)
|
|||||||
ITfContext_Release(cxtTest);
|
ITfContext_Release(cxtTest);
|
||||||
|
|
||||||
hr = ITfDocumentMgr_Pop(g_dm, 0);
|
hr = ITfDocumentMgr_Pop(g_dm, 0);
|
||||||
ok(!SUCCEEDED(hr),"Pop Succeeded\n");
|
ok(FAILED(hr),"Pop Succeeded\n");
|
||||||
|
|
||||||
hr = ITfDocumentMgr_GetTop(g_dm, &cxtTest);
|
hr = ITfDocumentMgr_GetTop(g_dm, &cxtTest);
|
||||||
ok(SUCCEEDED(hr),"GetTop Failed\n");
|
ok(SUCCEEDED(hr),"GetTop Failed\n");
|
||||||
|
@ -442,7 +442,7 @@ static WINAPI HRESULT ThreadMgrSource_AdviseSink(ITfSource *iface,
|
|||||||
tms = HeapAlloc(GetProcessHeap(),0,sizeof(ThreadMgrSink));
|
tms = HeapAlloc(GetProcessHeap(),0,sizeof(ThreadMgrSink));
|
||||||
if (!tms)
|
if (!tms)
|
||||||
return E_OUTOFMEMORY;
|
return E_OUTOFMEMORY;
|
||||||
if (!SUCCEEDED(IUnknown_QueryInterface(punk, riid, (LPVOID*)&tms->interfaces.pITfThreadMgrEventSink)))
|
if (FAILED(IUnknown_QueryInterface(punk, riid, (LPVOID *)&tms->interfaces.pITfThreadMgrEventSink)))
|
||||||
{
|
{
|
||||||
HeapFree(GetProcessHeap(),0,tms);
|
HeapFree(GetProcessHeap(),0,tms);
|
||||||
return CONNECT_E_CANNOTCONNECT;
|
return CONNECT_E_CANNOTCONNECT;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user