diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 14:23:12 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 14:30:44 +0000 |
commit | 9add737f88c46a21e9d49b9940c41c443207962a (patch) | |
tree | 02cc67a7e994f4dcf67f649b5db4f3c44c4e33f0 /cui | |
parent | ba75754c44b40bad65aa429dbd83cb597542581c (diff) |
coverity#705139 Missing break in switch
Change-Id: Ie4fc12e93a51bc117ec82058c579593f7677cd9b
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/textattr.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cui/source/tabpages/textattr.cxx b/cui/source/tabpages/textattr.cxx index 51a5620875e3..8d9faa698b53 100644 --- a/cui/source/tabpages/textattr.cxx +++ b/cui/source/tabpages/textattr.cxx @@ -391,6 +391,7 @@ sal_Bool SvxTextAttrPage::FillItemSet( SfxItemSet& rAttrs) { default: ; //prevent warning OSL_FAIL( "svx::SvxTextAttrPage::FillItemSet(), unhandled state!" ); + /* Fall through */ case STATE_NOCHECK: eFTS = SDRTEXTFIT_NONE; break; case STATE_CHECK: eFTS = SDRTEXTFIT_AUTOFIT; break; } |