Updated debug spew.

This commit is contained in:
Pietro Gagliardi 2014-08-14 08:00:05 -04:00
parent 9aacd55d58
commit 697b3cc1b0
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ func (c *container) setParent(p *controlParent) {
func containerResizing(data unsafe.Pointer, r *C.GtkAllocation) {
c := (*container)(data)
c.resize(int(r.x), int(r.y), int(r.width), int(r.height))
fmt.Printf("new size %d x %d\n", r.width, r.height)
fmt.Printf("%p new size %d x %d\n", c, r.width, r.height)
}
const (