21
0
Fork 0
This commit is contained in:
Liu Ming 2017-06-12 10:36:14 +08:00
parent 3daf1f6acf
commit 7ea8f41efa
1 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,9 @@ type WorkSheet struct {
func (w *WorkSheet) Row(i int) *Row {
row := w.rows[uint16(i)]
row.wb = w.wb
if row != nil {
row.wb = w.wb
}
return row
}