qmgr: Use proper method macros.

This commit is contained in:
Nikolay Sivov 2012-08-24 12:52:18 +04:00 committed by Alexandre Julliard
parent f91f6034de
commit fcda3c7ad8
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_AddFileSet(
ULONG 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);
if (FAILED(hr))
return hr;

View File

@ -218,7 +218,7 @@ static void test_Next_walkList_2(void)
{
ok(jobs[i] != NULL, "Next returned NULL\n");
if (jobs[i])
IBackgroundCopyFile_Release(jobs[i]);
IBackgroundCopyJob_Release(jobs[i]);
}
HeapFree(GetProcessHeap(), 0, jobs);