diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-04 00:38:25 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-04 16:33:15 +0100 |
commit | f506e99344158f0215228ab478bd3a19391d7220 (patch) | |
tree | 760618813a7a70a298e88948a18f6a93508f9298 /sc | |
parent | 1d1004f604cbdb74b16e963ac6ab8252c7124f0b (diff) |
implement export for (no) error cond format export to odf
Change-Id: I5652803231651393b5f01d7c20e853819aef539d
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlexprt.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmlexprt.cxx b/sc/source/filter/xml/xmlexprt.cxx index 069b238c3b77..b38f273a2f93 100644 --- a/sc/source/filter/xml/xmlexprt.cxx +++ b/sc/source/filter/xml/xmlexprt.cxx @@ -3908,6 +3908,12 @@ void ScXMLExport::ExportConditionalFormat(SCTAB nTab) aCond.append(pEntry->GetExpression(aPos, 0, 0, formula::FormulaGrammar::GRAM_ODFF)); aCond.append(')'); break; + case SC_COND_ERROR: + aCond.append("is-error"); + break; + case SC_COND_NOERROR: + aCond.append("is-no-error"); + break; case SC_COND_NONE: continue; default: |