diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:47:12 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:47:12 +0000 |
commit | 6b137e5105bf8278863dac847631c11c4249723c (patch) | |
tree | 6e1e4f367b2365a7a9f1374adeccc8348a622189 /xmloff | |
parent | b0f3fb4ccac986193f6bc8cead3a7f6d7959892a (diff) |
INTEGRATION: CWS warnings01 (1.11.34); FILE MERGED
2005/11/17 15:19:26 pl 1.11.34.1: #i55991# removed warnings
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLTextPropertySetContext.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/text/XMLTextPropertySetContext.cxx b/xmloff/source/text/XMLTextPropertySetContext.cxx index 13ba82c8c7de..3bf25c11320f 100644 --- a/xmloff/source/text/XMLTextPropertySetContext.cxx +++ b/xmloff/source/text/XMLTextPropertySetContext.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLTextPropertySetContext.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: rt $ $Date: 2005-09-09 15:25:24 $ + * last change: $Author: hr $ $Date: 2006-06-19 18:47:12 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -91,7 +91,7 @@ SvXMLImportContext *XMLTextPropertySetContext::CreateChildContext( { SvXMLImportContext *pContext = 0; - switch( xMapper->getPropertySetMapper() + switch( mxMapper->getPropertySetMapper() ->GetEntryContextId( rProp.mnIndex ) ) { case CTF_TABSTOP: @@ -113,7 +113,7 @@ SvXMLImportContext *XMLTextPropertySetContext::CreateChildContext( case CTF_DROPCAPFORMAT: { DBG_ASSERT( rProp.mnIndex >= 2 && - CTF_DROPCAPWHOLEWORD == xMapper->getPropertySetMapper() + CTF_DROPCAPWHOLEWORD == mxMapper->getPropertySetMapper() ->GetEntryContextId( rProp.mnIndex-2 ), "invalid property map!"); XMLTextDropCapImportContext *pDCContext = @@ -130,9 +130,9 @@ SvXMLImportContext *XMLTextPropertySetContext::CreateChildContext( case CTF_BACKGROUND_URL: { DBG_ASSERT( rProp.mnIndex >= 2 && - CTF_BACKGROUND_POS == xMapper->getPropertySetMapper() + CTF_BACKGROUND_POS == mxMapper->getPropertySetMapper() ->GetEntryContextId( rProp.mnIndex-2 ) && - CTF_BACKGROUND_FILTER == xMapper->getPropertySetMapper() + CTF_BACKGROUND_FILTER == mxMapper->getPropertySetMapper() ->GetEntryContextId( rProp.mnIndex-1 ), "invalid property map!"); @@ -141,7 +141,7 @@ SvXMLImportContext *XMLTextPropertySetContext::CreateChildContext( sal_Int32 nTranspIndex = -1; if( (rProp.mnIndex >= 3) && ( CTF_BACKGROUND_TRANSPARENCY == - xMapper->getPropertySetMapper()->GetEntryContextId( + mxMapper->getPropertySetMapper()->GetEntryContextId( rProp.mnIndex-3 ) ) ) nTranspIndex = rProp.mnIndex-3; @@ -160,7 +160,7 @@ SvXMLImportContext *XMLTextPropertySetContext::CreateChildContext( case CTF_SECTION_ENDNOTE_END: pContext = new XMLSectionFootnoteConfigImport( GetImport(), nPrefix, rLocalName, rProperties, - xMapper->getPropertySetMapper()); + mxMapper->getPropertySetMapper()); break; #endif // #ifndef SVX_LIGHT } |