Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions row.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ func (r *Row) PushCell(c *Cell) {
}

func (r *Row) makeCellKey(colIdx int) string {
return fmt.Sprintf("%s:%06d:%06d", r.Sheet.Name, r.num, colIdx)
return fmt.Sprintf("%s:%06d:%06d", r.Sheet.cellStoreName, r.num, colIdx)
}

func (r *Row) key() string {
return r.makeCellKeyRowPrefix()
}

func (r *Row) makeCellKeyRowPrefix() string {
return fmt.Sprintf("%s:%06d", r.Sheet.Name, r.num)
return fmt.Sprintf("%s:%06d", r.Sheet.cellStoreName, r.num)
}

// GetCell returns the Cell at a given column index, creating it if it doesn't exist.
Expand Down