Commit fcda3c7a authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

qmgr: Use proper method macros.

parent f91f6034
...@@ -82,7 +82,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_AddFileSet( ...@@ -82,7 +82,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_AddFileSet(
ULONG i; ULONG i;
for (i = 0; i < cFileCount; ++i) for (i = 0; i < cFileCount; ++i)
{ {
HRESULT hr = IBackgroundCopyJob_AddFile(iface, pFileSet[i].RemoteName, HRESULT hr = IBackgroundCopyJob2_AddFile(iface, pFileSet[i].RemoteName,
pFileSet[i].LocalName); pFileSet[i].LocalName);
if (FAILED(hr)) if (FAILED(hr))
return hr; return hr;
......
...@@ -218,7 +218,7 @@ static void test_Next_walkList_2(void) ...@@ -218,7 +218,7 @@ static void test_Next_walkList_2(void)
{ {
ok(jobs[i] != NULL, "Next returned NULL\n"); ok(jobs[i] != NULL, "Next returned NULL\n");
if (jobs[i]) if (jobs[i])
IBackgroundCopyFile_Release(jobs[i]); IBackgroundCopyJob_Release(jobs[i]);
} }
HeapFree(GetProcessHeap(), 0, jobs); HeapFree(GetProcessHeap(), 0, jobs);
......
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