summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmltble.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-02-05 12:44:50 +0100
committerMichael Stahl <mstahl@redhat.com>2016-02-05 14:42:39 +0100
commit94db2ac39d7335fa6358588c887cef998b14b5d6 (patch)
treec2cc0e8ed34806dddf6cab9a5e7739240e777c72 /sw/source/filter/xml/xmltble.cxx
parent042b36467e3e358268a483464d7e3af5689d045d (diff)
sw: move SwTextTable's SwClient to SwTextTable::Impl
Change-Id: If86bf825a714be00d678d50e80adddaced48c3e2
Diffstat (limited to 'sw/source/filter/xml/xmltble.cxx')
-rw-r--r--sw/source/filter/xml/xmltble.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/xml/xmltble.cxx b/sw/source/filter/xml/xmltble.cxx
index 3e81a9018787..1b4a1802746f 100644
--- a/sw/source/filter/xml/xmltble.cxx
+++ b/sw/source/filter/xml/xmltble.cxx
@@ -1156,7 +1156,7 @@ void SwXMLTextParagraphExport::exportTable(
OSL_ENSURE( xTextTable.is(), "text table missing" );
if( xTextTable.is() )
{
- const SwXTextTable *pXTable = nullptr;
+ SwXTextTable *pXTable = nullptr;
Reference<XUnoTunnel> xTableTunnel( rTextContent, UNO_QUERY);
if( xTableTunnel.is() )
{
@@ -1166,7 +1166,7 @@ void SwXMLTextParagraphExport::exportTable(
}
if( pXTable )
{
- SwFrameFormat *pFormat = pXTable->GetFrameFormat();
+ SwFrameFormat *const pFormat = pXTable->GetFrameFormat();
OSL_ENSURE( pFormat, "table format missing" );
const SwTable *pTable = SwTable::FindTable( pFormat );
OSL_ENSURE( pTable, "table missing" );