ole32: Fix return value for DefaultHandler_SetExtent.

This commit is contained in:
François Dorin 2008-07-26 15:09:33 +02:00 committed by Alexandre Julliard
parent 3ae17fa003
commit db941f43b6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}