aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xgbgen/representation.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/xgbgen/representation.go')
-rw-r--r--nexgb/xgbgen/representation.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/nexgb/xgbgen/representation.go b/nexgb/xgbgen/representation.go
index be7accd..62a3eb2 100644
--- a/nexgb/xgbgen/representation.go
+++ b/nexgb/xgbgen/representation.go
@@ -3,6 +3,7 @@ package main
import (
"fmt"
"log"
+ "strings"
"unicode"
)
@@ -41,7 +42,11 @@ type Request struct {
}
func (r *Request) Initialize(p *Protocol) {
- r.srcName = SrcName(r.xmlName)
+ r.srcName = SrcName(p, r.xmlName)
+ if p.Name != "xproto" {
+ r.srcName = strings.Title(strings.ToLower(p.Name)) + r.srcName
+ }
+
if r.Reply != nil {
r.Reply.Initialize(p)
}