##// END OF EJS Templates
Tiny fix (spurious self) to gtk example.
Fernando Perez -
Show More
@@ -21,7 +21,7 b' window = gtk.Window(gtk.WINDOW_TOPLEVEL)'
21 button = gtk.Button("Hello World")
21 button = gtk.Button("Hello World")
22 button.connect("clicked", hello_world, None)
22 button.connect("clicked", hello_world, None)
23
23
24 window.add(self.button)
24 window.add(button)
25 button.show()
25 button.show()
26 window.show()
26 window.show()
27
27
General Comments 0
You need to be logged in to leave comments. Login now