From: Kevin A. <ka...@us...> - 2004-11-01 01:11:32
|
Update of /cvsroot/pythoncard/PythonCard/components In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1019/components Modified Files: notebook.py Log Message: undid pageText since Get requires arg - don't commit after margaritas ;-) Index: notebook.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/components/notebook.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** notebook.py 1 Nov 2004 01:06:59 -0000 1.3 --- notebook.py 1 Nov 2004 01:11:22 -0000 1.4 *************** *** 90,101 **** getPage = wx.Notebook.GetPage getPageCount = wx.Notebook.GetPageCount ! #getPageText = wx.Notebook.GetPageText #getSelection = wx.Notebook.GetSelection insertPage = wx.Notebook.InsertPage removePage = wx.Notebook.RemovePage ! #setPageText = wx.Notebook.SetPageText #setSelection = wx.Notebook.SetSelection - pageText = property(wx.Notebook.GetPageText, wx.Notebook.SetPageText) selection = property(wx.Notebook.GetSelection, wx.Notebook.SetSelection) stringSelection = property(_getStringSelection, _setStringSelection) --- 90,100 ---- getPage = wx.Notebook.GetPage getPageCount = wx.Notebook.GetPageCount ! getPageText = wx.Notebook.GetPageText #getSelection = wx.Notebook.GetSelection insertPage = wx.Notebook.InsertPage removePage = wx.Notebook.RemovePage ! setPageText = wx.Notebook.SetPageText #setSelection = wx.Notebook.SetSelection selection = property(wx.Notebook.GetSelection, wx.Notebook.SetSelection) stringSelection = property(_getStringSelection, _setStringSelection) |