ocarina/ocarina/sources/list.py

8 lines
161 B
Python

# Bryan Schumaker (2 / 12 / 2011)
import gtk
class List(gtk.ListStore):
def __init__(self):
gtk.ListStore.__init__(self, int, str, str, str, str, str, int)