*** FlowObj.cxx.orig Fri Aug 22 19:16:08 1997 --- FlowObj.cxx Thu Oct 30 09:57:21 1997 *************** *** 2448,2457 **** table->columnStyles.resize(columnIndex + 1); Vector &tem = table->columnStyles[columnIndex]; if (span > 0) { ! if (span > tem.size()) { ! tem.resize(span); ! tem[span - 1] = style; ! } } } } --- 2448,2456 ---- table->columnStyles.resize(columnIndex + 1); Vector &tem = table->columnStyles[columnIndex]; if (span > 0) { ! while (tem.size() < span) ! tem.push_back((StyleObj *)0); ! tem[span - 1] = style; } } }