summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xftable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xftable.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xftable.cxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xftable.cxx b/lotuswordpro/source/filter/xfilter/xftable.cxx
index 9c93b05358d9..bc8c2940281c 100644
--- a/lotuswordpro/source/filter/xfilter/xftable.cxx
+++ b/lotuswordpro/source/filter/xfilter/xftable.cxx
@@ -70,47 +70,6 @@ XFTable::XFTable()
m_pOwnerCell = NULL;
}
-XFTable::XFTable(const XFTable& other):XFContent(other)
-{
- m_strName = other.m_strName;
- m_bSubTable = other.m_bSubTable;
- m_pOwnerCell = NULL;
- for( int i=1; i<=other.m_aHeaderRows.GetCount(); i++ )
- {
- XFRow *pRow = (XFRow*)other.m_aHeaderRows.GetContent(i+1);
- if( pRow )
- {
- m_aHeaderRows.Add( new XFRow(*pRow) );
- }
- }
-
- m_aColumns = other.m_aColumns;
- m_strDefCellStyle = other.m_strDefCellStyle;
- m_strDefRowStyle = other.m_strDefRowStyle;
- m_strDefColStyle = other.m_strDefColStyle;
-}
-
-XFTable& XFTable::operator =(const XFTable& other)
-{
- m_strName = other.m_strName;
- m_bSubTable = other.m_bSubTable;
- m_pOwnerCell = NULL;
- for( int i=1; i<=other.m_aHeaderRows.GetCount(); i++ )
- {
- XFRow *pRow = (XFRow*)other.m_aHeaderRows.GetContent(i);
- if( pRow )
- {
- m_aHeaderRows.Add( new XFRow(*pRow) );
- }
- }
-
- m_aColumns = other.m_aColumns;
- m_strDefCellStyle = other.m_strDefCellStyle;
- m_strDefRowStyle = other.m_strDefRowStyle;
- m_strDefColStyle = other.m_strDefColStyle;
- return *this;
-}
-
XFTable::~XFTable()
{
std::map<sal_uInt16, XFRow*>::iterator it;