diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-27 10:58:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-28 09:24:59 +0000 |
commit | b443fe81a720d59ee7a9b229adaebd3f683cfa06 (patch) | |
tree | 4541a17a0ea0c42b20fd6bd36ae21ec3ed966659 /sw | |
parent | 557e52e8cd90db43416cdd183704d549fcf73ee2 (diff) |
coverity#735551 Dead default in switch
Change-Id: I524a81cf1b617c63a5c5a5ab3b49145d6d5e75ff
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/vba/vbalisthelper.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sw/source/ui/vba/vbalisthelper.cxx b/sw/source/ui/vba/vbalisthelper.cxx index b600e41296c2..5966078dbf08 100644 --- a/sw/source/ui/vba/vbalisthelper.cxx +++ b/sw/source/ui/vba/vbalisthelper.cxx @@ -447,10 +447,6 @@ void SwVbaListHelper::CreateOutlineNumberForType3() throw( css::uno::RuntimeExce aBulletChar = OUString( sal_Unicode( CHAR_DIAMOND ) ); break; } - default: - { - throw uno::RuntimeException(); - } } setOrAppendPropertyValue( aPropertyValues, OUString(UNO_NAME_BULLET_CHAR ), uno::makeAny( aBulletChar ) ); mxNumberingRules->replaceByIndex( nLevel, uno::makeAny( aPropertyValues ) ); |