diff options
author | three <three3q@qq.com> | 2021-08-13 01:32:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-13 01:32:44 +0800 |
commit | f6f14f507ee1adf4883cb1b12f27932a63afb286 (patch) | |
tree | 36128e53dc1b54f555bdd944829b1a4eb270f053 /pivotTable.go | |
parent | 61d0ed1ff26fbe47b4bfdc6adbc6db09743beb3a (diff) |
Speed up merge cells
Diffstat (limited to 'pivotTable.go')
-rw-r--r-- | pivotTable.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pivotTable.go b/pivotTable.go index 07cf84c..0b0e5af 100644 --- a/pivotTable.go +++ b/pivotTable.go @@ -198,7 +198,7 @@ func (f *File) adjustRange(rangeStr string) (string, []int, error) { return "", []int{}, ErrParameterInvalid } trimRng := strings.Replace(rng[1], "$", "", -1) - coordinates, err := f.areaRefToCoordinates(trimRng) + coordinates, err := areaRefToCoordinates(trimRng) if err != nil { return rng[0], []int{}, err } |