summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/oox
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-01 13:56:48 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-02 06:20:35 +0000
commitd68a0fc050ea4d57e15246f8e71781cd42ebdaa1 (patch)
treed8f8e8823de13253a1bb41a8a4804dfec042694b /sc/source/filter/oox
parentcom::sun::star->css in forms/ (diff)
downloadcore-d68a0fc050ea4d57e15246f8e71781cd42ebdaa1.tar.gz
core-d68a0fc050ea4d57e15246f8e71781cd42ebdaa1.zip
loplugin:unusedmethods
Change-Id: Ie1603adf3908fd0668bcbe8f75c6bafa0d0bfd6c Reviewed-on: https://gerrit.libreoffice.org/19072 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/source/filter/oox')
-rw-r--r--sc/source/filter/oox/formulaparser.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/sc/source/filter/oox/formulaparser.cxx b/sc/source/filter/oox/formulaparser.cxx
index 4a48cf257e92..2ace00d246d9 100644
--- a/sc/source/filter/oox/formulaparser.cxx
+++ b/sc/source/filter/oox/formulaparser.cxx
@@ -2797,22 +2797,6 @@ ApiTokenSequence FormulaParser::importFormula( const CellAddress& rBaseAddress,
return mxImpl->importBiff12Formula( rBaseAddress, eType, rStrm );
}
-ApiTokenSequence FormulaParser::importFormula( const CellAddress& rBaseAddress, FormulaType eType, BiffInputStream& rStrm, const sal_uInt16* pnFmlaSize ) const
-{
- return mxImpl->importBiffFormula( rBaseAddress, eType, rStrm, pnFmlaSize );
-}
-
-ApiTokenSequence FormulaParser::convertErrorToFormula( sal_uInt8 nErrorCode ) const
-{
- ApiTokenSequence aTokens( 3 );
- // HACK: enclose all error codes into an 1x1 matrix
- aTokens[ 0 ].OpCode = OPCODE_ARRAY_OPEN;
- aTokens[ 1 ].OpCode = OPCODE_PUSH;
- aTokens[ 1 ].Data <<= BiffHelper::calcDoubleFromError( nErrorCode );
- aTokens[ 2 ].OpCode = OPCODE_ARRAY_CLOSE;
- return aTokens;
-}
-
OUString FormulaParser::importOleTargetLink( const OUString& rFormulaString )
{
sal_Int32 nRefId = -1;