From b84cdaf0772700162d1ad8e622a6095e90c5996b Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 4 Aug 2014 21:41:42 -0400 Subject: [PATCH] More TODOs. --- redo/window_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/window_unix.go b/redo/window_unix.go index 7dcd60f..e798443 100644 --- a/redo/window_unix.go +++ b/redo/window_unix.go @@ -42,7 +42,7 @@ func newWindow(title string, width int, height int, control Control) *window { C.gpointer(unsafe.Pointer(w))) C.gtk_window_resize(w.window, C.gint(width), C.gint(height)) w.container = newContainer(control) - // TODO make a method of container + // TODO make a method of container? because this would conflict with tabs... C.gtk_container_add(w.wc, w.container.layoutwidget) return w }