summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-05 13:43:31 -0400
committerPietro Gagliardi <[email protected]>2014-06-05 13:43:31 -0400
commit00ec1215bbed82e89b51f157a52d694351c204e7 (patch)
treee0ddccd535b8170877c5946a02c08c7baff76caa
parent5a9bd4b4b5eb40fe1eeb618271841110d87b7dd7 (diff)
Removed some leftover debugging code from the previous few commits.
-rw-r--r--gtkcalls_unix.go4
1 files changed, 0 insertions, 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
}