From: Kevin A. <ka...@us...> - 2004-09-04 22:47:32
|
Update of /cvsroot/pythoncard/PythonCard/samples/dbBrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6858/samples/dbBrowser Modified Files: dbTable.py Log Message: converted import * Index: dbTable.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/dbBrowser/dbTable.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** dbTable.py 19 Aug 2004 15:41:40 -0000 1.5 --- dbTable.py 4 Sep 2004 22:47:22 -0000 1.6 *************** *** 1,4 **** ! from wx.grid import * ! class DBTable(PyGridTableBase): """Class to wrap a database table that can be assigned to a grid --- 1,5 ---- ! from wx import grid ! ! class DBTable(grid.PyGridTableBase): """Class to wrap a database table that can be assigned to a grid *************** *** 6,10 **** """ def __init__(self, db, tableName): ! PyGridTableBase.__init__(self) self.__db=db self.tableName=tableName --- 7,11 ---- """ def __init__(self, db, tableName): ! grid.PyGridTableBase.__init__(self) self.__db=db self.tableName=tableName |