From: Kevin A. <ka...@us...> - 2004-11-01 01:07:12
|
Update of /cvsroot/pythoncard/PythonCard/components In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv341/components Modified Files: notebook.py Log Message: made pageText a property Index: notebook.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/components/notebook.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** notebook.py 16 Sep 2004 04:42:29 -0000 1.2 --- notebook.py 1 Nov 2004 01:06:59 -0000 1.3 *************** *** 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) --- 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) |