Module: wine Branch: refs/heads/master Commit: 23707beb461c7c44a17088de4c78d4f654ca2091 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=23707beb461c7c44a17088de...
Author: Dan Hipschman dsh@linux.ucla.edu Date: Mon Jul 31 11:56:24 2006 -0700
widl: Set defined flag for coclasses.
---
tools/widl/parser.y | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/tools/widl/parser.y b/tools/widl/parser.y index b8e1c39..123a23a 100644 --- a/tools/widl/parser.y +++ b/tools/widl/parser.y @@ -651,6 +651,7 @@ coclasshdr: attributes coclass { $$ =
coclassdef: coclasshdr '{' coclass_ints '}' { $$ = $1; $$->ifaces = $3; + $$->defined = TRUE; } ;