diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-08 12:28:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-08 14:25:03 +0000 |
commit | a1b78271c946bd9d67f16b04cbb81cafa675082a (patch) | |
tree | f24d93c2ce0bb35f47fced1e56e4f8210c8fcef0 | |
parent | 6b34a4cbcc7e8b9cd118b55c6ca77a1f61049f5f (diff) |
coverity#1190346 silence Unchecked return value
Change-Id: If6223276d2d45431a674047b9540d4ac3eb71395
-rw-r--r-- | filter/source/msfilter/eschesdo.cxx | 4 |
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") { |