From e30646ed59777313b91ffe7675a7545c4ef8a4d7 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 27 Apr 2014 13:48:47 -0400 Subject: [PATCH] Removed TODO about returning container before connecting signals in sysdata_unix.go; nothing will actually be sent until we show the widgets anyway. --- sysdata_unix.go | 1 - 1 file changed, 1 deletion(-) diff --git a/sysdata_unix.go b/sysdata_unix.go index 23f29b2..e1b5ced 100644 --- a/sysdata_unix.go +++ b/sysdata_unix.go @@ -126,7 +126,6 @@ func (s *sysData) make(window *sysData) error { uitask <- func() { fixed := gtkNewWindowLayout() gtk_container_add(s.widget, fixed) - // TODO return the container before assigning the signals? for signame, sigfunc := range ct.signals { g_signal_connect(s.widget, signame, sigfunc, s) }