widl: Use local functions where possible instead of STUB_FORWARDING_FUNCTION in stub vtables.

This commit is contained in:
Alexandre Julliard 2008-12-08 15:11:26 +01:00
parent d1b3d484f7
commit 014dcb81e8
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ static int write_stub_methods(type_t *iface, int skip)
const func_t *cur;
int i = 0;
if (iface->ref) i = write_stub_methods(iface->ref, TRUE);
if (iface->ref) i = write_stub_methods(iface->ref, need_delegation(iface));
else return i; /* skip IUnknown */
if (iface->funcs) LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry ) {