summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/TableData.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-20 16:03:50 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-21 07:58:51 +0000
commit6ea66657ebca5b3ec63f93b496b812888e0d53c9 (patch)
tree9f623491080bd49f3bc077bf3a4324033b793e33 /writerfilter/source/dmapper/TableData.hxx
parentf6f415a6690baf5420bd2561353199d5dc1209a8 (diff)
loplugin:unusedmethods writerfilter
Change-Id: I52441115e14da6c1bcd7ba4926a0f3cc0620366e Reviewed-on: https://gerrit.libreoffice.org/17236 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'writerfilter/source/dmapper/TableData.hxx')
-rw-r--r--writerfilter/source/dmapper/TableData.hxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/writerfilter/source/dmapper/TableData.hxx b/writerfilter/source/dmapper/TableData.hxx
index a334df26f793..b1b5c1827997 100644
--- a/writerfilter/source/dmapper/TableData.hxx
+++ b/writerfilter/source/dmapper/TableData.hxx
@@ -63,13 +63,6 @@ public:
virtual ~CellData() {}
/**
- Set the start handle of the cell.
-
- @param start the start handle of the cell
- */
- void setStart(css::uno::Reference<css::text::XTextRange> start) { mStart = start; }
-
- /**
Set the end handle of a cell.
@param end the end handle of the cell
@@ -77,13 +70,6 @@ public:
void setEnd(css::uno::Reference<css::text::XTextRange> end) { mEnd = end; mbOpen = false; }
/**
- Set the properties of the cell.
-
- @param pProps the properties of the cell
- */
- void setProperties(TablePropertyMapPtr pProps) { mpProps = pProps; }
-
- /**
Adds properties to the cell.
@param pProps the properties to add
@@ -248,15 +234,6 @@ public:
{
return mpProperties;
}
-
- /**
- Clear the row data.
- */
- void clear()
- {
- mCells.clear();
- mpProperties.reset();
- }
};
/**
@@ -365,14 +342,6 @@ public:
}
/**
- Return the table properties.
- */
- TablePropertyMapPtr getTableProperties()
- {
- return mpTableProps;
- }
-
- /**
Return number of rows in the table.
*/
unsigned int getRowCount()