summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfrow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfrow.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfrow.cxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfrow.cxx b/lotuswordpro/source/filter/xfilter/xfrow.cxx
index 9ce38ec075b1..7f7a54078833 100644
--- a/lotuswordpro/source/filter/xfilter/xfrow.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfrow.cxx
@@ -73,35 +73,6 @@ XFRow::XFRow()
{
}
-XFRow::XFRow(const XFRow& other):XFContent(other)
-{
- m_pOwnerTable = NULL;
- m_nRepeat = other.m_nRepeat;
- m_nRow = other.m_nRow;
-
- for( int i=1; i<=other.GetCellCount(); i++ )
- {
- XFCell *pCell = new XFCell;
- *pCell = *other.GetCell(i);
- AddCell(pCell);
- }
-}
-
-XFRow& XFRow::operator=(const XFRow& other)
-{
- m_pOwnerTable = NULL;
- m_nRepeat = other.m_nRepeat;
- m_nRow = other.m_nRow;
-
- for( int i=1; i<=other.GetCellCount(); i++ )
- {
- XFCell *pCell = new XFCell;
- *pCell = *other.GetCell(i);
- AddCell(pCell);
- }
- return *this;
-}
-
XFRow::~XFRow()
{
std::map<sal_Int32,XFCell*>::iterator it;