summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-08 00:05:33 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-08 00:06:56 +0100
commitfab6109465409e009a3b2daa469b9360fe8f68c3 (patch)
tree7d0c7076f0bba3a64b4f080486474417e9e711c2 /sc
parentb2f7859fc2835d151fd6970a1233ea4f8768dbe1 (diff)
fix OOXML validation error with conditional formatting
Change-Id: I737b3f5bf140a0cf80fac6cae243922882cca018
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/excel/xecontent.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx
index 3cee5e6e909f..e977e46095bc 100644
--- a/sc/source/filter/excel/xecontent.cxx
+++ b/sc/source/filter/excel/xecontent.cxx
@@ -811,10 +811,10 @@ const char* GetOperatorString(ScConditionMode eMode, bool& bFrmla2)
pRet = "notBetween";
break;
case SC_COND_DUPLICATE:
- pRet = "duplicateValues";
+ pRet = NULL;
break;
case SC_COND_NOTDUPLICATE:
- pRet = "uniqueValues";
+ pRet = NULL;
break;
case SC_COND_DIRECT:
break;