[Zmx-cvs-commit] zmx ZMX_ClipClass.as,1.10,1.11
Brought to you by:
sspickle
|
From: Steve S. <ssp...@us...> - 2006-06-01 11:10:07
|
Update of /cvsroot/zmx/zmx In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30863 Modified Files: ZMX_ClipClass.as Log Message: strange. This change should not matter.. but somehow it does. Index: ZMX_ClipClass.as =================================================================== RCS file: /cvsroot/zmx/zmx/ZMX_ClipClass.as,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ZMX_ClipClass.as 29 May 2006 10:47:57 -0000 1.10 --- ZMX_ClipClass.as 1 Jun 2006 11:10:01 -0000 1.11 *************** *** 358,362 **** } ! dt.setColumns(columnNames); var defPWidth = 100.0/(columnNames.length); --- 358,362 ---- } ! dt.setColumns.apply(dt, columnNames); var defPWidth = 100.0/(columnNames.length); *************** *** 367,370 **** --- 367,371 ---- if (!cdef(columnInfo.hidden,false)) { // check that this is not a hidden column column.setHeader(cdef(columnInfo.label, columnInfo.name)); + _global.gTrace("Setting header: " + columnInfo.label + ":" + columnInfo.name); column.setWidth( dt.width * cdef(columnInfo.percentWidth, defPWidth)/100.0); if (columnInfo.cellSymbol != null) { |