From 697b3cc1b0694db8b788175f6b377f5bcb15d5a2 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 14 Aug 2014 08:00:05 -0400 Subject: [PATCH] Updated debug spew. --- redo/container_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/container_unix.go b/redo/container_unix.go index 513f9d1..74d5da9 100644 --- a/redo/container_unix.go +++ b/redo/container_unix.go @@ -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 (