From 25dad84813feb405e709c31b180361dc1b7cfaaa Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Thu, 29 Jan 2009 10:02:54 +0000 Subject: CWS-TOOLING: integrate CWS cmcfixes52 2009-01-05 10:49:04 +0100 cmc r265860 : #i97763# remove low-hanging warnings --- xmloff/source/core/xmlexp.cxx | 2 +- xmloff/source/draw/sdpropls.cxx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'xmloff/source') diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 4aa7ee5d034f..f681be8b93cf 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -2375,7 +2375,7 @@ SvXMLExport::AddAttributeXmlId(uno::Reference const & i_xIfc) } // --> OD 2008-11-26 #158694# -const sal_Bool SvXMLExport::exportTextNumberElement() const +sal_Bool SvXMLExport::exportTextNumberElement() const { return mpImpl->mbExportTextNumberElement; } diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx index 678efc8dae5a..60b921ea8aaa 100644 --- a/xmloff/source/draw/sdpropls.cxx +++ b/xmloff/source/draw/sdpropls.cxx @@ -1602,7 +1602,7 @@ void XMLPageExportPropertyMapper::ContextFilter( case CTF_PAGE_TRANSITION_TYPE: { if( ((mrExport.getExportFlags() & EXPORT_OASIS) == 0) || - ((*property).maValue >>= nTransitionType) && (nTransitionType == 0) ) + (((*property).maValue >>= nTransitionType) && (nTransitionType == 0)) ) (*property).mnIndex = -1; } break; @@ -1610,7 +1610,7 @@ void XMLPageExportPropertyMapper::ContextFilter( { sal_Int16 nTransitionSubtype = sal_Int16(); if( ((mrExport.getExportFlags() & EXPORT_OASIS) == 0) || - ((*property).maValue >>= nTransitionSubtype) && (nTransitionSubtype == 0) ) + (((*property).maValue >>= nTransitionSubtype) && (nTransitionSubtype == 0)) ) (*property).mnIndex = -1; } @@ -1619,7 +1619,7 @@ void XMLPageExportPropertyMapper::ContextFilter( { sal_Bool bDirection = sal_Bool(); if( ((mrExport.getExportFlags() & EXPORT_OASIS) == 0) || - ((*property).maValue >>= bDirection) && bDirection ) + (((*property).maValue >>= bDirection) && bDirection) ) (*property).mnIndex = -1; } break; -- cgit