diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-07-01 12:20:22 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-07-01 12:44:06 +0200 |
commit | 42fcd888ae537152f9d59c03e945d4bf9aaeb7dd (patch) | |
tree | 29677f97308535b308b284fae3f01eedae42b45f /basic | |
parent | 611b419562dbde945d532ce27d7233be5d55fda1 (diff) |
coverity#735397 dead code
Change-Id: If8d82a39af7a506f42b6c13d8408ffc479b564e7
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index ec82700b5afa..1d8dc31c75c7 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -4974,7 +4974,6 @@ OUString SbUnoStructRefObject::Impl_DumpProperties() // Is it in Uno a sequence? SbxDataType eType = pVar->GetFullType(); - bool bMaybeVoid = false; OUString aName( pVar->GetName() ); StructFieldInfo::iterator it = maFields.find( aName ); @@ -4991,10 +4990,7 @@ OUString SbUnoStructRefObject::Impl_DumpProperties() } } aPropStr.append( Dbg_SbxDataType2String( eType ) ); - if( bMaybeVoid ) - { - aPropStr.appendAscii( "/void" ); - } + aPropStr.appendAscii( " " ); aPropStr.append( pVar->GetName() ); |