summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xistyle.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/xistyle.hxx')
-rw-r--r--sc/source/filter/inc/xistyle.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sc/source/filter/inc/xistyle.hxx b/sc/source/filter/inc/xistyle.hxx
index 180e12e64fff..6a9fb3753521 100644
--- a/sc/source/filter/inc/xistyle.hxx
+++ b/sc/source/filter/inc/xistyle.hxx
@@ -158,7 +158,7 @@ private:
bool mbShadowUsed; /// true = Shadowed used.
};
-// ----------------------------------------------------------------------------
+
/** Stores the data of all fonts occurred in an Excel file. */
class XclImpFontBuffer : protected XclImpRoot, private boost::noncopyable
@@ -262,7 +262,7 @@ struct XclImpCellProt : public XclCellProt
void FillToItemSet( SfxItemSet& rItemSet, bool bSkipPoolDefs = false ) const;
};
-// ----------------------------------------------------------------------------
+
/** Extends the XclCellAlign struct for import.
@descr Provides functions to fill from Excel record data and to fill to item sets. */
@@ -284,7 +284,7 @@ struct XclImpCellAlign : public XclCellAlign
void FillToItemSet( SfxItemSet& rItemSet, const XclImpFont* pFont, bool bSkipPoolDefs = false ) const;
};
-// ----------------------------------------------------------------------------
+
/** Extends the XclCellBorder struct for import.
@descr Provides functions to fill from Excel record data and to fill to item sets. */
@@ -324,7 +324,7 @@ struct XclImpCellBorder : public XclCellBorder
bool bSkipPoolDefs = false ) const;
};
-// ----------------------------------------------------------------------------
+
/** Extends the XclCellArea struct for import.
@descr Provides functions to fill from Excel record data and to fill to item sets. */
@@ -359,7 +359,7 @@ struct XclImpCellArea : public XclCellArea
bool bSkipPoolDefs = false ) const;
};
-// ----------------------------------------------------------------------------
+
/** Represents an XF record index with additional information. */
class XclImpXFIndex
@@ -382,7 +382,7 @@ inline bool operator==( const XclImpXFIndex& rLeft, const XclImpXFIndex& rRight
inline bool operator!=( const XclImpXFIndex& rLeft, const XclImpXFIndex& rRight )
{ return !(rLeft == rRight); }
-// ----------------------------------------------------------------------------
+
/** Contains all data of a XF record and a Calc item set. */
class XclImpXF : public XclXFBase, protected XclImpRoot, private boost::noncopyable
@@ -447,7 +447,7 @@ private:
sal_uInt16 mnXclFont; /// Index to font record.
};
-// ----------------------------------------------------------------------------
+
/** Contains all data of a cell style associated with an XF record. */
class XclImpStyle : protected XclImpRoot
@@ -483,7 +483,7 @@ private:
ScStyleSheet* mpStyleSheet; /// Calc cell style sheet.
};
-// ----------------------------------------------------------------------------
+
/** Contains all XF records occurred in the file.
@descr This class is able to read XF records (BIFF2 - BIFF8) and STYLE records (BIFF8). */
@@ -571,7 +571,7 @@ inline bool XclImpXFRange::Contains( SCROW nScRow ) const
return (mnScRow1 <= nScRow) && (nScRow <= mnScRow2);
}
-// ----------------------------------------------------------------------------
+
/** Contains the XF indexes for every used cell in a column. */
class XclImpXFRangeColumn : private boost::noncopyable
@@ -611,7 +611,7 @@ private:
IndexList maIndexList; /// The list of XF index range.
};
-// ----------------------------------------------------------------------------
+
/** Contains the XF indexes for every used cell in a single sheet. */
class XclImpXFRangeBuffer : protected XclImpRoot, private boost::noncopyable
@@ -677,7 +677,7 @@ private:
ScRangeList maMergeList; /// List of merged cell ranges.
};
-// ============================================================================
+
#endif