ocarina/ocarina/box.py
Bryan Schumaker 1139ba09c3 Declassify Tabs()
We only have one instance of the main tabs, so there is no reason for it
to be a class.  I have changed this into a set of functions that do
everything the old class did.
2010-08-22 09:07:09 -04:00

17 lines
234 B
Python

# Bryan Schumaker (8/20/2010)
import ocarina
gtk = ocarina.gtk
class VBox(gtk.VBox):
def __init__(self):
gtk.VBox.__init__(self)
self.show()
class HBox(gtk.HBox):
def __init__(self):
gtk.HBox.__init__(self)
self.show()