diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-21 12:59:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-21 13:00:58 +0200 |
commit | 46bf504e0384d7491b9543604e594228c64318a1 (patch) | |
tree | 0b5294993bd1d5994966deb0d445537628e5ef15 /oox | |
parent | 038069806e4e2a8760fa415a23c28ccd338239f4 (diff) |
simplify
Change-Id: I67de532443cbb9e64bed67fe28ee94fef38f5eae
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/docprop/docprophandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/docprop/docprophandler.cxx b/oox/source/docprop/docprophandler.cxx index b71c5ec0d22a..773a6e5ba90c 100644 --- a/oox/source/docprop/docprophandler.cxx +++ b/oox/source/docprop/docprophandler.cxx @@ -305,7 +305,7 @@ void SAL_CALL OOXMLDocPropHandler::startFastElement( ::sal_Int32 nElement, const if ( xAttribs.is() && xAttribs->hasAttribute( XML_name ) ) m_aCustomPropertyName = xAttribs->getValue( XML_name ); } - else if ( m_nState && m_nInBlock && m_nInBlock == 2 && getNamespace( nElement ) == NMSP_officeDocPropsVT ) + else if ( m_nState && m_nInBlock == 2 && getNamespace( nElement ) == NMSP_officeDocPropsVT ) { m_nType = nElement; } |