From 97b6b6f4d0e6293759a02db089c9210b8c7287c1 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sat, 3 Nov 2012 21:56:47 +0100 Subject: add (no) error cond format export to ooxml Change-Id: I11537a22f72130d796887581611449c849ab0876 --- sc/source/filter/excel/xecontent.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sc/source/filter/excel/xecontent.cxx') 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"; } -- cgit