summaryrefslogtreecommitdiff
path: root/xmloff/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2009-01-29 10:02:54 +0000
committerKurt Zenker <kz@openoffice.org>2009-01-29 10:02:54 +0000
commit3cb9494b42a5be33d4bc210cc7481aeafd851656 (patch)
tree632352fc2d1e0189510208019647a28bdfbfef2e /xmloff/source
parentd0f8e2fb691766435d388752a425ed98712e04d9 (diff)
CWS-TOOLING: integrate CWS cmcfixes52
2009-01-05 10:49:04 +0100 cmc r265860 : #i97763# remove low-hanging warnings
Diffstat (limited to 'xmloff/source')
-rw-r--r--xmloff/source/core/xmlexp.cxx2
-rw-r--r--xmloff/source/draw/sdpropls.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx
index a8287f8f5b..1aee3bfa02 100644
--- a/xmloff/source/core/xmlexp.cxx
+++ b/xmloff/source/core/xmlexp.cxx
@@ -2375,7 +2375,7 @@ SvXMLExport::AddAttributeXmlId(uno::Reference<uno::XInterface> 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 3453dc2379..42d3ab356b 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;