Commit 2a11f2df authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msctf: Use FAILED instead of !SUCCEDED.

parent b49d541c
...@@ -430,7 +430,7 @@ static WINAPI HRESULT ContextSource_AdviseSink(ITfSource *iface, ...@@ -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, ...@@ -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) ...@@ -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) ...@@ -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, ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment