Removed TODO from gtkcalls_unix.go about gtk_widget_show_all() working on all widgets, not just containers; the documentation explicitly says this.

This commit is contained in:
Pietro Gagliardi 2014-04-27 19:15:32 -04:00
parent b7a5f68543
commit ba2ff53729
1 changed files with 0 additions and 1 deletions

View File

@ -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)
}