diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-05-13 08:19:53 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-05-13 08:44:39 +0200 |
commit | 9e14712f8569ac2bde0eddf058ed0b0a99303c49 (patch) | |
tree | 0d7f6f44b8aa1669142db9d0b44258ae44c1e4f7 | |
parent | 8384032fb757d42bb93f03f70f589d493ea8ef2f (diff) |
support export of duplicate values conditional format to xlsx
Change-Id: I35266eabcba5e063bf296fa1d4b356f247458ea1
-rw-r--r-- | sc/source/filter/excel/xecontent.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx index c091c799d8b5..1b0bbf435898 100644 --- a/sc/source/filter/excel/xecontent.cxx +++ b/sc/source/filter/excel/xecontent.cxx @@ -815,6 +815,8 @@ const char* GetOperatorString(ScConditionMode eMode, bool& bFrmla2) pRet = "notBetween"; break; case SC_COND_DUPLICATE: + pRet = "duplicateValues"; + break; case SC_COND_NOTDUPLICATE: case SC_COND_DIRECT: case SC_COND_NONE: |