diff options
Diffstat (limited to 'nexgb/xproto')
| -rw-r--r-- | nexgb/xproto/xproto.go | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/nexgb/xproto/xproto.go b/nexgb/xproto/xproto.go index 728f85f..716c49b 100644 --- a/nexgb/xproto/xproto.go +++ b/nexgb/xproto/xproto.go @@ -4227,6 +4227,10 @@ func NewPixmapId(c *xgb.Conn) (Pixmap, error) {  	return Pixmap(id), nil  } +const ( +	PixmapNone = 0 +) +  // BadPixmap is the error number for a BadPixmap.  const BadPixmap = 4 @@ -4266,10 +4270,6 @@ func init() {  }  const ( -	PixmapNone = 0 -) - -const (  	PlaceOnTop    = 0  	PlaceOnBottom = 1  ) @@ -6379,10 +6379,6 @@ func NewWindowId(c *xgb.Conn) (Window, error) {  	return Window(id), nil  } -const ( -	WindowNone = 0 -) -  // BadWindow is the error number for a BadWindow.  const BadWindow = 3 @@ -6422,6 +6418,10 @@ func init() {  }  const ( +	WindowNone = 0 +) + +const (  	WindowClassCopyFromParent = 0  	WindowClassInputOutput    = 1  	WindowClassInputOnly      = 2 | 
