summaryrefslogtreecommitdiff
path: root/gtkcalls_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-27 19:15:32 -0400
committerPietro Gagliardi <[email protected]>2014-04-27 19:15:32 -0400
commitba2ff537296e5acb1a015084d50755d1390b658b (patch)
tree7dbf44d43ca38907cd7e10b6c4b1b2e1a87ff8b5 /gtkcalls_unix.go
parentb7a5f685436678daddc1de77865197dc27aa0181 (diff)
Removed TODO from gtkcalls_unix.go about gtk_widget_show_all() working on all widgets, not just containers; the documentation explicitly says this.
Diffstat (limited to 'gtkcalls_unix.go')
-rw-r--r--gtkcalls_unix.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/gtkcalls_unix.go b/gtkcalls_unix.go
index f622739..614bbd9 100644
--- a/gtkcalls_unix.go
+++ b/gtkcalls_unix.go
@@ -38,7 +38,6 @@ func gtk_window_new() *C.GtkWidget {
return C.gtk_window_new(C.GTK_WINDOW_TOPLEVEL)
}
-// TODO ensure this works if called on an individual control
func gtk_widget_show(widget *C.GtkWidget) {
C.gtk_widget_show_all(widget)
}