Oops, earlier changes broke the "Undecided" schedule. Added a new "system.sched...
[wvapps.git] / photoreider / prnotebook.py
blob5a2ecd26304a093b63b9d53eac950ab731bb7fdf
1 import wx
2 from prthing import *
4 class PrNotebook(PrThing, wx.Notebook):
5 def __init__(self, parent, ID=-1):
6 PrThing.__init__(self)
7 wx.Notebook.__init__(self, parent, ID)
9 def add_page(self, page, title):
10 self.AddPage(page, title)