summaryrefslogtreecommitdiff
path: root/redo/window_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-04 21:41:42 -0400
committerPietro Gagliardi <[email protected]>2014-08-04 21:41:42 -0400
commitb84cdaf0772700162d1ad8e622a6095e90c5996b (patch)
tree334bb9f02078813d886358bac04d9a81c56e5dec /redo/window_unix.go
parent12f7c691d310736e945cd77a943769fbcc5c0635 (diff)
More TODOs.
Diffstat (limited to 'redo/window_unix.go')
-rw-r--r--redo/window_unix.go2
1 files changed, 1 insertions, 1 deletions
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
}