diff options
author | Andrew Gallant <jamslam@gmail.com> | 2013-12-28 10:13:20 -0500 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-08 16:49:21 +0200 |
commit | 76f9adb5991081e27ebc6eec82db6bdba36c910f (patch) | |
tree | cbf0e38e95853b9fc3c1133f901e7b4c5f6ab435 /nexgb/ge | |
parent | 33509dbeb0acd7abbbb9e8c434d0c3f0ce8a3230 (diff) | |
download | haven-76f9adb5991081e27ebc6eec82db6bdba36c910f.tar.gz haven-76f9adb5991081e27ebc6eec82db6bdba36c910f.tar.xz haven-76f9adb5991081e27ebc6eec82db6bdba36c910f.zip |
Use consistent extension names. Close #6.
Diffstat (limited to 'nexgb/ge')
-rw-r--r-- | nexgb/ge/ge.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nexgb/ge/ge.go b/nexgb/ge/ge.go index 1cfd918..68213bc 100644 --- a/nexgb/ge/ge.go +++ b/nexgb/ge/ge.go @@ -69,7 +69,7 @@ type QueryVersionCookie struct { // QueryVersion sends a checked request. // If an error occurs, it will be returned with the reply by calling QueryVersionCookie.Reply() func QueryVersion(c *xgb.Conn, ClientMajorVersion uint16, ClientMinorVersion uint16) QueryVersionCookie { - if _, ok := c.Extensions["GENERIC EVENT EXTENSION"]; !ok { + if _, ok := c.Extensions["Generic Event Extension"]; !ok { panic("Cannot issue request 'QueryVersion' using the uninitialized extension 'Generic Event Extension'. ge.Init(connObj) must be called first.") } cookie := c.NewCookie(true, true) @@ -80,7 +80,7 @@ func QueryVersion(c *xgb.Conn, ClientMajorVersion uint16, ClientMinorVersion uin // QueryVersionUnchecked sends an unchecked request. // If an error occurs, it can only be retrieved using xgb.WaitForEvent or xgb.PollForEvent. func QueryVersionUnchecked(c *xgb.Conn, ClientMajorVersion uint16, ClientMinorVersion uint16) QueryVersionCookie { - if _, ok := c.Extensions["GENERIC EVENT EXTENSION"]; !ok { + if _, ok := c.Extensions["Generic Event Extension"]; !ok { panic("Cannot issue request 'QueryVersion' using the uninitialized extension 'Generic Event Extension'. ge.Init(connObj) must be called first.") } cookie := c.NewCookie(false, true) @@ -141,7 +141,7 @@ func queryVersionRequest(c *xgb.Conn, ClientMajorVersion uint16, ClientMinorVers b := 0 buf := make([]byte, size) - buf[b] = c.Extensions["GENERIC EVENT EXTENSION"] + buf[b] = c.Extensions["Generic Event Extension"] b += 1 buf[b] = 0 // request opcode |