summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/formulabase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/formulabase.cxx')
-rw-r--r--sc/source/filter/oox/formulabase.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx
index 25021e880771..64270d226e99 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -42,8 +42,6 @@
namespace oox {
namespace xls {
-
-
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::sheet;
using namespace ::com::sun::star::table;
@@ -119,8 +117,6 @@ void BinSingleRef2d::readBiff8Data( BiffInputStream& rStrm, bool bRelativeAsOffs
setBiff8Data( nCol, nRow, bRelativeAsOffset );
}
-
-
void BinComplexRef2d::readBiff12Data( SequenceInputStream& rStrm, bool bRelativeAsOffset )
{
sal_Int32 nRow1, nRow2;
@@ -997,8 +993,6 @@ private:
sal_uInt8 nMaxParam, bool bImportFilter, FilterType eFilter );
};
-
-
FunctionProviderImpl::FunctionProviderImpl( FilterType eFilter, BiffType eBiff, bool bImportFilter,
bool bCallerKnowsAboutMacroExport )
{
@@ -1110,8 +1104,6 @@ void FunctionProviderImpl::initFuncs( const FunctionData* pBeg, const FunctionDa
initFunc( *pIt, nMaxParam );
}
-
-
FunctionProvider::FunctionProvider( FilterType eFilter, BiffType eBiff, bool bImportFilter,
bool bCallerKnowsAboutMacroExport ) :
mxFuncImpl( new FunctionProviderImpl( eFilter, eBiff, bImportFilter, bCallerKnowsAboutMacroExport ) )
@@ -1194,8 +1186,6 @@ private:
bool initFuncOpCodes( const ApiTokenMap& rIntFuncTokenMap, const ApiTokenMap& rExtFuncTokenMap, const FunctionInfoVector& rFuncInfos );
};
-
-
OpCodeProviderImpl::OpCodeProviderImpl( const FunctionInfoVector& rFuncInfos,
const Reference< XMultiServiceFactory >& rxModelFactory )
{
@@ -1449,8 +1439,6 @@ bool OpCodeProviderImpl::initFuncOpCodes( const ApiTokenMap& rIntFuncTokenMap, c
return bIsValid;
}
-
-
OpCodeProvider::OpCodeProvider( const Reference< XMultiServiceFactory >& rxModelFactory,
FilterType eFilter, BiffType eBiff, bool bImportFilter, bool bCallerKnowsAboutMacroExport ) :
FunctionProvider( eFilter, eBiff, bImportFilter, bCallerKnowsAboutMacroExport ),
@@ -1589,8 +1577,6 @@ TokenToRangeListState lclProcessClose( sal_Int32& ornParenLevel )
} // namespace
-
-
FormulaProcessorBase::FormulaProcessorBase( const WorkbookHelper& rHelper ) :
OpCodeProvider( rHelper.getBaseFilter().getModelFactory(), rHelper.getFilterType(), rHelper.getBiff(), rHelper.getBaseFilter().isImportFilter() ),
ApiOpCodes( getOpCodes() ),
@@ -1598,8 +1584,6 @@ FormulaProcessorBase::FormulaProcessorBase( const WorkbookHelper& rHelper ) :
{
}
-
-
OUString FormulaProcessorBase::generateAddress2dString( const CellAddress& rAddress, bool bAbsolute )
{
return generateAddress2dString( BinAddress( rAddress ), bAbsolute );
@@ -1620,8 +1604,6 @@ OUString FormulaProcessorBase::generateAddress2dString( const BinAddress& rAddre
return aBuffer.makeStringAndClear();
}
-
-
OUString FormulaProcessorBase::generateApiString( const OUString& rString )
{
OUString aRetString = rString;
@@ -1658,8 +1640,6 @@ OUString FormulaProcessorBase::generateApiArray( const Matrix< Any >& rMatrix )
return aBuffer.makeStringAndClear();
}
-
-
Any FormulaProcessorBase::extractReference( const ApiTokenSequence& rTokens ) const
{
ApiTokenIterator aTokenIt( rTokens, OPCODE_SPACES, true );
@@ -1773,8 +1753,6 @@ void FormulaProcessorBase::convertStringToStringList(
}
}
-
-
} // namespace xls
} // namespace oox