diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-06-11 07:36:09 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-06-11 08:01:27 +0200 |
commit | 78c67ecb10ce741f9117cda7eb63ff4a3b6e086d (patch) | |
tree | 73ef0af9ec3315e0e8e9bf9f0278a3ed33212065 /sc | |
parent | 6655d658984ad7518b8ccae492433bf2f45bceb0 (diff) |
remove empty conditions for color format export to excel
Change-Id: I8b35869f3e4455bb8cb16d67bd9636462a24e26b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xecontent.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx index 3395cf9d77c5..6021704c7012 100644 --- a/sc/source/filter/excel/xecontent.cxx +++ b/sc/source/filter/excel/xecontent.cxx @@ -972,10 +972,6 @@ XclExpCondfmt::XclExpCondfmt( const XclExpRoot& rRoot, const ScConditionalFormat { if(pFormatEntry->GetType() == condformat::CONDITION) maCFList.AppendNewRecord( new XclExpCF( GetRoot(), static_cast<const ScCondFormatEntry&>(*pFormatEntry), nIndex ) ); - else if(pFormatEntry->GetType() == condformat::COLORSCALE) - ; - else if(pFormatEntry->GetType() == condformat::DATABAR) - ; } aScRanges.Format( msSeqRef, SCA_VALID, NULL, formula::FormulaGrammar::CONV_XL_A1 ); } |