aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xgbgen/type.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu>2012-05-05 18:21:48 -0400
committerAndrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu>2012-05-05 18:21:48 -0400
commitb6715f376f5ea3efb58146c58924dcc7b1536181 (patch)
treee1213eb0678619a74b1ba57153827d58b645c48a /nexgb/xgbgen/type.go
parent4a7b05be36b96134b4dae3ca385e9bfbb797d531 (diff)
downloadhaven-b6715f376f5ea3efb58146c58924dcc7b1536181.tar.gz
haven-b6715f376f5ea3efb58146c58924dcc7b1536181.tar.xz
haven-b6715f376f5ea3efb58146c58924dcc7b1536181.zip
fixing bugs related mostly to extension handling
Diffstat (limited to 'nexgb/xgbgen/type.go')
-rw-r--r--nexgb/xgbgen/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexgb/xgbgen/type.go b/nexgb/xgbgen/type.go
index 3498463..521f67e 100644
--- a/nexgb/xgbgen/type.go
+++ b/nexgb/xgbgen/type.go
@@ -123,7 +123,7 @@ func (enum *Enum) Size() Size {
func (enum *Enum) Initialize(p *Protocol) {
enum.srcName = TypeSrcName(p, enum)
for _, item := range enum.Items {
- item.srcName = SrcName(item.xmlName)
+ item.srcName = SrcName(p, item.xmlName)
if item.Expr != nil {
item.Expr.Initialize(p)
}