From: Kevin A. <ka...@us...> - 2004-09-09 21:08:55
|
Update of /cvsroot/pythoncard/PythonCard/components In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8362/components Modified Files: grid.py Log Message: changed col to column since we are trying to avoid abbreviations Index: grid.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/components/grid.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** grid.py 9 Sep 2004 20:04:23 -0000 1.12 --- grid.py 9 Sep 2004 21:08:46 -0000 1.13 *************** *** 67,72 **** id = wx.grid.wxEVT_GRID_ROW_SIZE ! class GridColSizeEvent(GridEvent): ! name = 'colSize' binding = wx.grid.EVT_GRID_COL_SIZE id = wx.grid.wxEVT_GRID_COL_SIZE --- 67,72 ---- id = wx.grid.wxEVT_GRID_ROW_SIZE ! class GridColumnSizeEvent(GridEvent): ! name = 'columnSize' binding = wx.grid.EVT_GRID_COL_SIZE id = wx.grid.wxEVT_GRID_COL_SIZE *************** *** 113,117 **** GridLabelContextDoubleClickEvent, GridRowSizeEvent, ! GridColSizeEvent, GridRangeSelectEvent, GridCellChangeEvent, --- 113,117 ---- GridLabelContextDoubleClickEvent, GridRowSizeEvent, ! GridColumnSizeEvent, GridRangeSelectEvent, GridCellChangeEvent, |