summaryrefslogtreecommitdiff
path: root/xmloff/source/table
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-09-06 16:12:40 +0200
committerDavid Tardon <dtardon@redhat.com>2016-09-09 07:30:30 +0200
commit32ccb4ea863651c22bf33cc15012971d2a2d2810 (patch)
tree83d5cdf806d72e9185b9177a558e0d5ebba373ad /xmloff/source/table
parenta013b8505534896bc926e54116ef14e7879b0545 (diff)
resolve the snafu with 2 separate refcounted bases
Change-Id: Ia275596d54ea27436f03d01297fb78b6ca09e8a6
Diffstat (limited to 'xmloff/source/table')
-rw-r--r--xmloff/source/table/XMLTableImport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/table/XMLTableImport.cxx b/xmloff/source/table/XMLTableImport.cxx
index 6ac15996f9d0..2879196a4771 100644
--- a/xmloff/source/table/XMLTableImport.cxx
+++ b/xmloff/source/table/XMLTableImport.cxx
@@ -178,7 +178,7 @@ XMLProxyContext::XMLProxyContext( SvXMLImport& rImport, const SvXMLImportContext
SvXMLImportContext * XMLProxyContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList )
{
- if( mxParent.Is() )
+ if( mxParent.is() )
return mxParent->CreateChildContext( nPrefix, rLocalName, xAttrList );
else
return SvXMLImportContext::CreateChildContext( nPrefix, rLocalName, xAttrList );