summaryrefslogtreecommitdiff
path: root/pivotTable.go
diff options
context:
space:
mode:
authorthree <three3q@qq.com>2021-08-13 01:32:44 +0800
committerGitHub <noreply@github.com>2021-08-13 01:32:44 +0800
commitf6f14f507ee1adf4883cb1b12f27932a63afb286 (patch)
tree36128e53dc1b54f555bdd944829b1a4eb270f053 /pivotTable.go
parent61d0ed1ff26fbe47b4bfdc6adbc6db09743beb3a (diff)
Speed up merge cells
Diffstat (limited to 'pivotTable.go')
-rw-r--r--pivotTable.go2
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
}