diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-02 14:31:01 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-02 14:58:12 +0100 |
commit | 95cf9d5a48232e45cded632ef440420db1c26866 (patch) | |
tree | 19c497217096ebc8797f132812469d6a89fe0dcb /sc | |
parent | f4cac2d83bec0d3dc6aa8227db2c29ed9b658581 (diff) |
warn when trying to export a conditional format that is not supported
Change-Id: I617613e745c16558fd2ef97d4d072f00d59b8c5d
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlexprt.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmlexprt.cxx b/sc/source/filter/xml/xmlexprt.cxx index fda1912f1073..069b238c3b77 100644 --- a/sc/source/filter/xml/xmlexprt.cxx +++ b/sc/source/filter/xml/xmlexprt.cxx @@ -3910,6 +3910,8 @@ void ScXMLExport::ExportConditionalFormat(SCTAB nTab) break; case SC_COND_NONE: continue; + default: + SAL_WARN("sc", "unimplemented conditional format export"); } rtl::OUString sStyle = pEntry->GetStyle(); AddAttribute(XML_NAMESPACE_CALC_EXT, XML_APPLY_STYLE_NAME, sStyle); |