diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-02-20 19:08:39 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-02-20 19:12:11 +0200 |
commit | 3a6c12b32f9ca4ce060d1fed55a4bf3fbf5a4fbf (patch) | |
tree | 745844b927a91ed7aa17d74b48e2c4de19eeb01d /oox | |
parent | aad0b5d6a6ad8a3a895c6ffba3390af6861017d7 (diff) |
Bin code that is never executed but calls a method that has been removed
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/xls/sheetdatacontext.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/oox/source/xls/sheetdatacontext.cxx b/oox/source/xls/sheetdatacontext.cxx index b6415f363dbc..7196e4761405 100644 --- a/oox/source/xls/sheetdatacontext.cxx +++ b/oox/source/xls/sheetdatacontext.cxx @@ -163,12 +163,7 @@ void SheetDataContext::onCharacters( const OUString& rChars ) maCellValue = rChars; break; case XLS_TOKEN( f ): - if( 0 && maFmlaData.mnFormulaType == XML_normal ) - { - maCellValue = rChars; - mrSheetData.putFormulaString( maCellData.maCellAddr, maCellValue ); - } - else if( maFmlaData.mnFormulaType != XML_TOKEN_INVALID ) + if( maFmlaData.mnFormulaType != XML_TOKEN_INVALID ) { maTokens = mrFormulaParser.importFormula( maCellData.maCellAddr, rChars ); } |