summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-11 17:18:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-11 17:47:21 +0200
commita83e40e2feaaa496e6051fb323df2eef63d85a04 (patch)
tree9625a8175395ac48ab9482955047135590542ed8 /lotuswordpro
parentf839d6ae2e40a46464e5f720f86ac221e4e3bdab (diff)
Dead code
Change-Id: Ifdb7c139fa6db7fef2896098f758769cb5284b28
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/xfilter/xftable.cxx41
-rw-r--r--lotuswordpro/source/filter/xfilter/xftable.hxx4
2 files changed, 0 insertions, 45 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;
diff --git a/lotuswordpro/source/filter/xfilter/xftable.hxx b/lotuswordpro/source/filter/xfilter/xftable.hxx
index f44c55ed610a..9dffb6f533e5 100644
--- a/lotuswordpro/source/filter/xfilter/xftable.hxx
+++ b/lotuswordpro/source/filter/xfilter/xftable.hxx
@@ -72,10 +72,6 @@ class XFTable : public XFContent
public:
XFTable();
- XFTable(const XFTable& other);
-
- XFTable& operator=(const XFTable& other);
-
virtual ~XFTable();
public: