writerfilter: remove never read m_xTableRange

Its last user was
writerfilter::dmapper::DomainMapperTableHandler::getTable(), removed in
commit 6ea66657ebca5b3ec63f93b496b812888e0d53c9 (loplugin:unusedmethods
writerfilter, 2015-07-20).

Change-Id: Ibaf536d4dd8f01f4413c3cec033db7438501e58c
This commit is contained in:
Miklos Vajna 2016-11-10 08:37:50 +01:00
parent acfe27b404
commit c67b55db4a
2 changed files with 0 additions and 4 deletions

View File

@ -1028,8 +1028,6 @@ void DomainMapperTableHandler::endTable(unsigned int nestedTableLevel, bool bTab
if (xTable.is()) if (xTable.is())
{ {
m_xTableRange = xTable->getAnchor( );
if (!aMerges.empty()) if (!aMerges.empty())
{ {
// Perform horizontal merges in reverse order, so the fact that merging changes the position of cells won't cause a problem for us. // Perform horizontal merges in reverse order, so the fact that merging changes the position of cells won't cause a problem for us.

View File

@ -65,8 +65,6 @@ class DomainMapperTableHandler final
std::vector<CellSequence_t> m_aRowRanges; std::vector<CellSequence_t> m_aRowRanges;
std::vector<RowSequence_t> m_aTableRanges; std::vector<RowSequence_t> m_aTableRanges;
css::uno::Reference< css::text::XTextRange > m_xTableRange;
// properties // properties
PropertyMapVector2 m_aCellProperties; PropertyMapVector2 m_aCellProperties;
PropertyMapVector1 m_aRowProperties; PropertyMapVector1 m_aRowProperties;