From 00ec1215bbed82e89b51f157a52d694351c204e7 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 5 Jun 2014 13:43:31 -0400 Subject: [PATCH] Removed some leftover debugging code from the previous few commits. --- gtkcalls_unix.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtkcalls_unix.go b/gtkcalls_unix.go index d79e68e..8810693 100644 --- a/gtkcalls_unix.go +++ b/gtkcalls_unix.go @@ -163,10 +163,6 @@ func gtk_toggle_button_get_active(widget *C.GtkWidget) bool { func gtk_combo_box_text_new() *C.GtkWidget { w := C.gtk_combo_box_text_new() C.gtkSetComboBoxArbitrarilyResizeable(w) -c:=C.gtk_bin_get_child((*C.GtkBin)(unsafe.Pointer(w))) -x:=(*C.GTypeInstance)(unsafe.Pointer(c)) -t:=x.g_class.g_type -fmt.Printf("%p %s\n", c, fromgstr(C.g_type_name(t))) return w }