Commit 8259f383 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oleaut32: Ignore SetObjects() result when building property frame.

parent 8fa582ae
...@@ -288,7 +288,7 @@ HRESULT WINAPI OleCreatePropertyFrameIndirect(LPOCPFIPARAMS lpParams) ...@@ -288,7 +288,7 @@ HRESULT WINAPI OleCreatePropertyFrameIndirect(LPOCPFIPARAMS lpParams)
res = IPropertyPage_SetObjects(property_page[i], res = IPropertyPage_SetObjects(property_page[i],
lpParams->cObjects, lpParams->lplpUnk); lpParams->cObjects, lpParams->lplpUnk);
if(FAILED(res)) if(FAILED(res))
continue; WARN("SetObjects() failed, hr %#x.\n", res);
res = IPropertyPage_GetPageInfo(property_page[i], &page_info); res = IPropertyPage_GetPageInfo(property_page[i], &page_info);
if(FAILED(res)) if(FAILED(res))
......
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