coverity#1190346 silence Unchecked return value
Change-Id: If6223276d2d45431a674047b9540d4ac3eb71395
This commit is contained in:
parent
6b34a4cbcc
commit
a1b78271c9
@ -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")
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user