summaryrefslogtreecommitdiff
path: root/svx/source/table/tablertfimporter.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-23 13:20:10 +0200
committerNoel Grandin <noel@peralex.com>2015-11-23 13:30:55 +0200
commit0cda1453a0e24e9ad6884a1345e4514a86900346 (patch)
tree1b05684dc6e361fdd7b09e61e3b62fd28becbd75 /svx/source/table/tablertfimporter.cxx
parente2c03fde5807b9a3a57321ff9396c3dd76ab4dcf (diff)
loplugin:unusedfields in svx/
Change-Id: Ia6531b1ff8882ad06084f11dd10e2b1fe3c8cf24
Diffstat (limited to 'svx/source/table/tablertfimporter.cxx')
-rw-r--r--svx/source/table/tablertfimporter.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/table/tablertfimporter.cxx b/svx/source/table/tablertfimporter.cxx
index 3eb66b77e4fc..a2237c47846a 100644
--- a/svx/source/table/tablertfimporter.cxx
+++ b/svx/source/table/tablertfimporter.cxx
@@ -51,10 +51,9 @@ struct RTFCellDefault
{
SfxItemSet maItemSet;
sal_Int32 mnCol;
- sal_uInt16 mnTwips; // right border of the cell
sal_Int32 mnColSpan; // MergeCell if >1, merged cells if 0
- explicit RTFCellDefault( SfxItemPool* pPool ) : maItemSet( *pPool ), mnCol(0), mnTwips(0 ), mnColSpan(1) {}
+ explicit RTFCellDefault( SfxItemPool* pPool ) : maItemSet( *pPool ), mnCol(0), mnColSpan(1) {}
};
typedef std::vector< std::shared_ptr< RTFCellDefault > > RTFCellDefaultVector;
@@ -64,9 +63,8 @@ struct RTFCellInfo
SfxItemSet maItemSet;
sal_Int32 mnStartPara;
sal_Int32 mnParaCount;
- sal_Int32 mnColSpan;
- explicit RTFCellInfo( SfxItemPool& rPool ) : maItemSet( rPool ), mnStartPara(0), mnParaCount(0), mnColSpan(0) {}
+ explicit RTFCellInfo( SfxItemPool& rPool ) : maItemSet( rPool ), mnStartPara(0), mnParaCount(0) {}
};
typedef std::shared_ptr< RTFCellInfo > RTFCellInfoPtr;