diff options
author | Yegor Kozlov <yegor@apache.org> | 2010-12-02 15:23:35 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2010-12-02 15:23:35 +0000 |
commit | 18a1054792b5061113e3b1563b3f2904eef17ca1 (patch) | |
tree | 49456b9dd936eeeb533efbe42145d736693ea911 /src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java | |
parent | ceef81633d857bfa788c0ee1d4e1b220f17264b6 (diff) | |
download | poi-18a1054792b5061113e3b1563b3f2904eef17ca1.tar.gz poi-18a1054792b5061113e3b1563b3f2904eef17ca1.zip |
Avoid crashing Excel when sorting XSSFSheet autofilter, see Bugzilla 50315
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1041407 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java index 1c06f8d271..ecbec23b5a 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java @@ -85,7 +85,7 @@ public final class XSSFName implements Name { * <li> This defined name refers to a range to which an AutoFilter has been * applied */ - public final static String BUILTIN_FILTER_DB = "_xlnm._FilterDatabase:"; + public final static String BUILTIN_FILTER_DB = "_xlnm._FilterDatabase"; /** * A built-in defined name that refers to a consolidation area |