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
commit25dad84813feb405e709c31b180361dc1b7cfaaa (patch)
tree764c39b2ec2f74b33e8f50129525f5c24b9f67c0 /xmloff/source
parent7deeb2a401b108ac176c4670b6674bfabfcef63c (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 4aa7ee5d034f..f681be8b93cf 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 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;