diff options
author | Oliver Specht <os@openoffice.org> | 2007-06-19 04:27:41 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2007-06-19 04:27:41 +0000 |
commit | 62254afe80354f5a9937573c5fb36385791dfa44 (patch) | |
tree | 61d28691e71947504cb3ee32d98b795a6ba5e122 | |
parent | 749a37a29da9b94d26198b1d431fb6911ed92afd (diff) |
using added
-rw-r--r-- | writerfilter/source/dmapper/DomainMapperTableManager.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.cxx b/writerfilter/source/dmapper/DomainMapperTableManager.cxx index c06a0933bf2b..6cc6ccd6c2ab 100644 --- a/writerfilter/source/dmapper/DomainMapperTableManager.cxx +++ b/writerfilter/source/dmapper/DomainMapperTableManager.cxx @@ -4,9 +4,9 @@ * * $RCSfile: DomainMapperTableManager.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: os $ $Date: 2007-06-18 12:31:12 $ + * last change: $Author: os $ $Date: 2007-06-19 05:27:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -57,6 +57,7 @@ #endif #include <ooxml/resourceids.hxx> +using namespace ::writerfilter; namespace dmapper { using namespace ::com::sun::star; @@ -144,7 +145,7 @@ bool DomainMapperTableManager::sprm(doctok::Sprm & rSprm) MeasureHandlerPtr pMeasureHandler( new MeasureHandler ); pProperties->resolve(*pMeasureHandler); PropertyMapPtr pPropMap( new PropertyMap ); - if( nSprmId == 0xf661 || nSprmId == NS_ooxml::LN_CT_TblPrBase_tblInd ) + if( nSprmId == 0xf661 || nSprmId == sal_uInt32(NS_ooxml::LN_CT_TblPrBase_tblInd )) { m_nLeftMargin = pMeasureHandler->getMeasureValue(); pPropMap->Insert( PROP_LEFT_MARGIN, uno::makeAny( m_nLeftMargin - m_nGapHalf )); |