summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xecontent.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-03 21:56:47 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-04 00:27:22 +0100
commit97b6b6f4d0e6293759a02db089c9210b8c7287c1 (patch)
tree1016bc1f4202ed74d0a5b79631991c76fcdc02ee /sc/source/filter/excel/xecontent.cxx
parent52a6d6f5c9af1e5ad0a884eb221a5429a954d887 (diff)
add (no) error cond format export to ooxml
Change-Id: I11537a22f72130d796887581611449c849ab0876
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 9672dc449cbf..ffca41ec6e80 100644
--- a/sc/source/filter/excel/xecontent.cxx
+++ b/sc/source/filter/excel/xecontent.cxx
@@ -848,6 +848,10 @@ const char* GetTypeString(ScConditionMode eMode)
return "uniqueValues";
case SC_COND_DUPLICATE:
return "duplicateValues";
+ case SC_COND_ERROR:
+ return "containsErrors";
+ case SC_COND_NOERROR:
+ return "notContainsErrors";
default:
return "cellIs";
}