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.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sc/source/filter/excel/xelink.cxx b/sc/source/filter/excel/xelink.cxx
index 7f451c0d7762..23b59771bb6d 100644
--- a/sc/source/filter/excel/xelink.cxx
+++ b/sc/source/filter/excel/xelink.cxx
@@ -68,7 +68,7 @@ private:
sal_uInt16 mnFlags; /// Flags for record export.
};
-// ----------------------------------------------------------------------------
+
/** Represents an EXTERNNAME record for an add-in function name. */
class XclExpExtNameAddIn : public XclExpExtNameBase
@@ -81,7 +81,7 @@ private:
virtual void WriteAddData( XclExpStream& rStrm );
};
-// ----------------------------------------------------------------------------
+
/** Represents an EXTERNNAME record for a DDE link. */
class XclExpExtNameDde : public XclExpExtNameBase
@@ -99,7 +99,7 @@ private:
XclExpCachedMatRef mxMatrix; /// Cached results of the DDE link.
};
-// ----------------------------------------------------------------------------
+
class XclExpSupbook;
@@ -183,7 +183,7 @@ private:
SCROW mnScRow; /// Row index of the external cells.
};
-// ----------------------------------------------------------------------------
+
/** Represents the record XCT which is the header record of a CRN record list.
*/
@@ -367,7 +367,7 @@ 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,7 +500,7 @@ protected:
explicit XclExpLinkManagerImpl( const XclExpRoot& rRoot );
};
-// ----------------------------------------------------------------------------
+
/** Implementation of the link manager for BIFF5/BIFF7. */
class XclExpLinkManagerImpl5 : public XclExpLinkManagerImpl
@@ -570,7 +570,7 @@ private:
XclExpCodeMap maCodeMap; /// Maps special external codes to EXTERNSHEET records.
};
-// ----------------------------------------------------------------------------
+
/** Implementation of the link manager for BIFF8. */
class XclExpLinkManagerImpl8 : public XclExpLinkManagerImpl
@@ -636,7 +636,7 @@ 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 ),
@@ -896,7 +896,7 @@ void XclExpExtNameBase::WriteAddData( XclExpStream& /*rStrm*/ )
{
}
-// ----------------------------------------------------------------------------
+
XclExpExtNameAddIn::XclExpExtNameAddIn( const XclExpRoot& rRoot, const OUString& rName ) :
XclExpExtNameBase( rRoot, rName )
@@ -910,7 +910,7 @@ 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 ) :
@@ -929,7 +929,7 @@ void XclExpExtNameDde::WriteAddData( XclExpStream& rStrm )
mxMatrix->Save( rStrm );
}
-// ----------------------------------------------------------------------------
+
XclExpExtName::XclExpExtName( const XclExpRoot& rRoot, const XclExpSupbook& rSupbook,
const OUString& rName, const ScExternalRefCache::TokenArrayRef pArray ) :
@@ -1918,7 +1918,7 @@ XclExpLinkManagerImpl::XclExpLinkManagerImpl( const XclExpRoot& rRoot ) :
{
}
-// ----------------------------------------------------------------------------
+
XclExpLinkManagerImpl5::XclExpLinkManagerImpl5( const XclExpRoot& rRoot ) :
XclExpLinkManagerImpl( rRoot )
@@ -2103,7 +2103,7 @@ XclExpLinkManagerImpl5::XclExpExtSheetRef XclExpLinkManagerImpl5::FindInternal(
return xExtSheet;
}
-// ----------------------------------------------------------------------------
+
XclExpLinkManagerImpl8::XclExpLinkManagerImpl8( const XclExpRoot& rRoot ) :
XclExpLinkManagerImpl( rRoot ),