summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xelink.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/xelink.cxx')
-rw-r--r--sc/source/filter/excel/xelink.cxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/sc/source/filter/excel/xelink.cxx b/sc/source/filter/excel/xelink.cxx
index 9f6f0f0cb302..1e431a480288 100644
--- a/sc/source/filter/excel/xelink.cxx
+++ b/sc/source/filter/excel/xelink.cxx
@@ -68,8 +68,6 @@ private:
sal_uInt16 mnFlags; /// Flags for record export.
};
-
-
/** Represents an EXTERNNAME record for an add-in function name. */
class XclExpExtNameAddIn : public XclExpExtNameBase
{
@@ -81,8 +79,6 @@ private:
virtual void WriteAddData( XclExpStream& rStrm ) SAL_OVERRIDE;
};
-
-
/** Represents an EXTERNNAME record for a DDE link. */
class XclExpExtNameDde : public XclExpExtNameBase
{
@@ -99,8 +95,6 @@ private:
XclExpCachedMatRef mxMatrix; /// Cached results of the DDE link.
};
-
-
class XclExpSupbook;
class XclExpExtName : public XclExpExtNameBase
@@ -183,8 +177,6 @@ private:
SCROW mnScRow; /// Row index of the external cells.
};
-
-
/** Represents the record XCT which is the header record of a CRN record list.
*/
class XclExpXct : public XclExpRecordBase, protected XclExpRoot
@@ -367,8 +359,6 @@ inline bool operator==( const XclExpXti& rLeft, const XclExpXti& rRight )
(rLeft.mnLastSBTab == rRight.mnLastSBTab);
}
-
-
/** Contains a list of all SUPBOOK records and index arrays of external sheets. */
class XclExpSupbookBuffer : public XclExpRecordBase, protected XclExpRoot
{
@@ -500,8 +490,6 @@ protected:
explicit XclExpLinkManagerImpl( const XclExpRoot& rRoot );
};
-
-
/** Implementation of the link manager for BIFF5/BIFF7. */
class XclExpLinkManagerImpl5 : public XclExpLinkManagerImpl
{
@@ -570,8 +558,6 @@ private:
XclExpCodeMap maCodeMap; /// Maps special external codes to EXTERNSHEET records.
};
-
-
/** Implementation of the link manager for BIFF8. */
class XclExpLinkManagerImpl8 : public XclExpLinkManagerImpl
{
@@ -636,8 +622,6 @@ const sal_uInt8 EXC_TABBUF_VISIBLE = 0x10; /// Sheet is visible.
const sal_uInt8 EXC_TABBUF_SELECTED = 0x20; /// Sheet is selected.
const sal_uInt8 EXC_TABBUF_MIRRORED = 0x40; /// Sheet is mirrored (right-to-left).
-
-
XclExpTabInfo::XclExpTabInfo( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
mnScCnt( 0 ),
@@ -896,8 +880,6 @@ void XclExpExtNameBase::WriteAddData( XclExpStream& /*rStrm*/ )
{
}
-
-
XclExpExtNameAddIn::XclExpExtNameAddIn( const XclExpRoot& rRoot, const OUString& rName ) :
XclExpExtNameBase( rRoot, rName )
{
@@ -910,8 +892,6 @@ void XclExpExtNameAddIn::WriteAddData( XclExpStream& rStrm )
rStrm << sal_uInt16( 2 ) << EXC_TOKID_ERR << EXC_ERR_REF;
}
-
-
XclExpExtNameDde::XclExpExtNameDde( const XclExpRoot& rRoot,
const OUString& rName, sal_uInt16 nFlags, const ScMatrix* pResults ) :
XclExpExtNameBase( rRoot, rName, nFlags )
@@ -929,8 +909,6 @@ void XclExpExtNameDde::WriteAddData( XclExpStream& rStrm )
mxMatrix->Save( rStrm );
}
-
-
XclExpExtName::XclExpExtName( const XclExpRoot& rRoot, const XclExpSupbook& rSupbook,
const OUString& rName, const ScExternalRefCache::TokenArrayRef pArray ) :
XclExpExtNameBase( rRoot, rName ),
@@ -1918,8 +1896,6 @@ XclExpLinkManagerImpl::XclExpLinkManagerImpl( const XclExpRoot& rRoot ) :
{
}
-
-
XclExpLinkManagerImpl5::XclExpLinkManagerImpl5( const XclExpRoot& rRoot ) :
XclExpLinkManagerImpl( rRoot )
{
@@ -2103,8 +2079,6 @@ XclExpLinkManagerImpl5::XclExpExtSheetRef XclExpLinkManagerImpl5::FindInternal(
return xExtSheet;
}
-
-
XclExpLinkManagerImpl8::XclExpLinkManagerImpl8( const XclExpRoot& rRoot ) :
XclExpLinkManagerImpl( rRoot ),
maSBBuffer( rRoot )
@@ -2249,8 +2223,6 @@ sal_uInt16 XclExpLinkManagerImpl8::InsertXti( const XclExpXti& rXti )
return ulimit_cast< sal_uInt16 >( maXtiVec.size() - 1 );
}
-
-
XclExpLinkManager::XclExpLinkManager( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
@@ -2348,6 +2320,4 @@ void XclExpLinkManager::Save( XclExpStream& rStrm )
mxImpl->Save( rStrm );
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */