diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-30 13:17:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-30 14:19:09 +0100 |
commit | b19043b89b52140733a94a4e12f0054fbc9add6c (patch) | |
tree | 7feaadc51e5e31edc56722d8f77f0b8e768f9fd1 /svx/source | |
parent | 87574542fc953a60bc2bafe8ed725500f9322521 (diff) |
coverity#705256 Missing break in switch
Change-Id: I173926b7966d0d75b51652a3983d73923fa2e575
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/customshapes/tbxcustomshapes.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/customshapes/tbxcustomshapes.cxx b/svx/source/customshapes/tbxcustomshapes.cxx index 4a8fff2d7f9e..bb25d07755fd 100644 --- a/svx/source/customshapes/tbxcustomshapes.cxx +++ b/svx/source/customshapes/tbxcustomshapes.cxx @@ -42,9 +42,8 @@ SvxTbxCtlCustomShapes::SvxTbxCtlCustomShapes( sal_uInt16 nSlotId, sal_uInt16 nId switch( nSlotId ) { default : - { DBG_ASSERT( false, "SvxTbxCtlCustomShapes: unknown slot executed. ?" ); - } + //fall-through case SID_DRAWTBX_CS_BASIC : { m_aCommand = ".uno:BasicShapes.diamond"; |