diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-01-15 20:17:40 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-01-15 20:17:40 +0100 |
commit | 422b8dedd0378ab830836f4cf64a34223c6c01cc (patch) | |
tree | 2a7798a3d896af2cf129fdd6031bb1f50b41d52a /cui | |
parent | 1ca36341be2af47f2e063dfebafdca8bd34d2433 (diff) |
coverity#1264393/1264394: missing break
Change-Id: Idfca6110d3170a94efaa9ac51902893d9403c27d
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/zoom.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cui/source/dialogs/zoom.cxx b/cui/source/dialogs/zoom.cxx index 5107c6eb169e..fa8b53ee3da0 100644 --- a/cui/source/dialogs/zoom.cxx +++ b/cui/source/dialogs/zoom.cxx @@ -77,16 +77,19 @@ void SvxZoomDialog::SetFactor(sal_uInt16 nNewFactor, sal_uInt16 nButtonId) { m_pOptimalBtn->Check(); m_pOptimalBtn->GrabFocus(); + break; } case ZOOMBTN_PAGEWIDTH: { m_pPageWidthBtn->Check(); m_pPageWidthBtn->GrabFocus(); + break; } case ZOOMBTN_WHOLEPAGE: { m_pWholePageBtn->Check(); m_pWholePageBtn->GrabFocus(); + break; } } } |