summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmliteme.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/xml/xmliteme.cxx')
-rw-r--r--sw/source/filter/xml/xmliteme.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/filter/xml/xmliteme.cxx b/sw/source/filter/xml/xmliteme.cxx
index 482ef650df05..fdb699b471b6 100644
--- a/sw/source/filter/xml/xmliteme.cxx
+++ b/sw/source/filter/xml/xmliteme.cxx
@@ -216,25 +216,25 @@ inline void SwXMLTableItemMapper_Impl::SetAbsWidth( sal_uInt32 nAbs )
void SwXMLExport::InitItemExport()
{
- pTwipUnitConv = new SvXMLUnitConverter(getComponentContext(),
+ m_pTwipUnitConverter = new SvXMLUnitConverter(getComponentContext(),
util::MeasureUnit::TWIP, GetMM100UnitConverter().GetXMLMeasureUnit());
- xTableItemMap = new SvXMLItemMapEntries( aXMLTableItemMap );
- xTableRowItemMap = new SvXMLItemMapEntries( aXMLTableRowItemMap );
- xTableCellItemMap = new SvXMLItemMapEntries( aXMLTableCellItemMap );
+ m_xTableItemMap = new SvXMLItemMapEntries( aXMLTableItemMap );
+ m_xTableRowItemMap = new SvXMLItemMapEntries( aXMLTableRowItemMap );
+ m_xTableCellItemMap = new SvXMLItemMapEntries( aXMLTableCellItemMap );
- pTableItemMapper = new SwXMLTableItemMapper_Impl( xTableItemMap, *this );
+ m_pTableItemMapper = new SwXMLTableItemMapper_Impl( m_xTableItemMap, *this );
}
void SwXMLExport::FinitItemExport()
{
- delete pTableItemMapper;
- delete pTwipUnitConv;
+ delete m_pTableItemMapper;
+ delete m_pTwipUnitConverter;
}
void SwXMLExport::ExportTableFormat( const SwFrameFormat& rFormat, sal_uInt32 nAbsWidth )
{
- static_cast<SwXMLTableItemMapper_Impl *>(pTableItemMapper)
+ static_cast<SwXMLTableItemMapper_Impl *>(m_pTableItemMapper)
->SetAbsWidth( nAbsWidth );
ExportFormat( rFormat, XML_TABLE );
}