Commit db941f43 authored by François Dorin's avatar François Dorin Committed by Alexandre Julliard

ole32: Fix return value for DefaultHandler_SetExtent.

parent 3ae17fa0
......@@ -715,7 +715,7 @@ static HRESULT WINAPI DefaultHandler_SetExtent(
dwDrawAspect, psizel->cx, psizel->cy);
if (object_is_running(This))
IOleObject_SetExtent(This->pOleDelegate, dwDrawAspect, psizel);
return IOleObject_SetExtent(This->pOleDelegate, dwDrawAspect, psizel);
return OLE_E_NOTRUNNING;
}
......
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