summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-08 12:28:30 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-08 14:25:03 +0000
commita1b78271c946bd9d67f16b04cbb81cafa675082a (patch)
treef24d93c2ce0bb35f47fced1e56e4f8210c8fcef0 /filter
parent6b34a4cbcc7e8b9cd118b55c6ca77a1f61049f5f (diff)
coverity#1190346 silence Unchecked return value
Change-Id: If6223276d2d45431a674047b9540d4ac3eb71395
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/eschesdo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/msfilter/eschesdo.cxx b/filter/source/msfilter/eschesdo.cxx
index 23b7cdb35bba..bfb9615aac62 100644
--- a/filter/source/msfilter/eschesdo.cxx
+++ b/filter/source/msfilter/eschesdo.cxx
@@ -1188,8 +1188,8 @@ void ImplEESdrObject::Init( ImplEESdrWriter& rEx )
{
// detect name first to make below test (is group) work
mType = OUString( mXShape->getShapeType() );
- mType.startsWith( "com.sun.star.", &mType ); // strip "com.sun.star."
- mType.endsWith( "Shape", &mType ); // strip "Shape"
+ (void)mType.startsWith( "com.sun.star.", &mType ); // strip "com.sun.star."
+ (void)mType.endsWith( "Shape", &mType ); // strip "Shape"
if(GetType() == "drawing.Group")
{