ocarina/ocarina/sources/list.py
Bryan Schumaker f194444895 Move ListStore creation code to new file
This continues my sources cleanup.
2011-05-01 12:02:15 -04:00

8 lines
156 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, int)