summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xecontent.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-02 14:54:23 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-02 14:58:13 +0100
commitc0350ca23c3c87e29aab5be0ebb8b44db6834977 (patch)
tree40438e350892d76e37f0809ef88088eb4ceb3045 /sc/source/filter/excel/xecontent.cxx
parent1c07b0b6c32d2caacdaa11e47350b1c4f854a0b1 (diff)
fix unique/duplicate cond format export to ooxml
Change-Id: Ie1ac8d8df351d149851cff8b7344335b30d46b83
Diffstat (limited to 'sc/source/filter/excel/xecontent.cxx')
-rw-r--r--sc/source/filter/excel/xecontent.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx
index 6c317e996fbc..e278a09bd9e1 100644
--- a/sc/source/filter/excel/xecontent.cxx
+++ b/sc/source/filter/excel/xecontent.cxx
@@ -844,6 +844,10 @@ const char* GetTypeString(ScConditionMode eMode)
case SC_COND_ABOVE_AVERAGE:
case SC_COND_BELOW_AVERAGE:
return "aboveAverage";
+ case SC_COND_NOTDUPLICATE:
+ return "uniqueValues";
+ case SC_COND_DUPLICATE:
+ return "duplicateValues";
default:
return "cellIs";
}