diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-03 21:56:47 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-04 00:27:22 +0100 |
commit | 97b6b6f4d0e6293759a02db089c9210b8c7287c1 (patch) | |
tree | 1016bc1f4202ed74d0a5b79631991c76fcdc02ee /sc | |
parent | 52a6d6f5c9af1e5ad0a884eb221a5429a954d887 (diff) |
add (no) error cond format export to ooxml
Change-Id: I11537a22f72130d796887581611449c849ab0876
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xecontent.cxx | 4 |
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"; } |