From 014dcb81e837fdde32a8b659a7d482b87936c581 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 8 Dec 2008 15:11:26 +0100 Subject: [PATCH] widl: Use local functions where possible instead of STUB_FORWARDING_FUNCTION in stub vtables. --- tools/widl/proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/widl/proxy.c b/tools/widl/proxy.c index 53d5c9dac27..95651fcfe73 100644 --- a/tools/widl/proxy.c +++ b/tools/widl/proxy.c @@ -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 ) {