summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/inc/excform.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/excform.hxx')
-rw-r--r--sc/source/filter/inc/excform.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/sc/source/filter/inc/excform.hxx b/sc/source/filter/inc/excform.hxx
index 229f614f7375..e057420bff04 100644
--- a/sc/source/filter/inc/excform.hxx
+++ b/sc/source/filter/inc/excform.hxx
@@ -29,7 +29,6 @@
class ScFormulaCell;
class ScRangeList;
-
class ExcelToSc : public ExcelConverterBase, protected XclImpRoot
{
protected:
@@ -43,7 +42,6 @@ protected:
XclFunctionProvider maFuncProv;
const XclBiff meBiff;
-
void DoMulArgs( DefTokenId eId, sal_uInt8 nNumArgs );
void ExcRelToScRel( sal_uInt16 nRow, sal_uInt8 nCol, ScSingleRefData&, const bool bName );
@@ -83,13 +81,11 @@ public:
void ReadExtensionMemArea( XclImpStream& aIn );
};
-
inline bool ExcelToSc::IsComplColRange( const sal_uInt16 nCol1, const sal_uInt16 nCol2 )
{
return ( nCol1 == 0x00 ) && ( nCol2 == 0xFF );
}
-
inline bool ExcelToSc::IsComplRowRange( const sal_uInt16 nRow1, const sal_uInt16 nRow2 )
{
return ( ( nRow1 & 0x3FFF ) == 0x0000 ) && ( ( nRow2 & 0x3FFF ) == 0x3FFF );
@@ -139,14 +135,11 @@ public:
virtual bool GetAbsRefs( ScRangeList& rRangeList, XclImpStream& rStrm, sal_Size nLen ) SAL_OVERRIDE;
};
-
inline bool ExcelToSc8::IsComplRowRange( const sal_uInt16 nRow1, const sal_uInt16 nRow2 )
{
return ( nRow1 == 0x0000 ) && ( nRow2 == 0xFFFF );
}
-
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */