From cdd1d19406726c9cbeb9969b99dc03cadbaf1050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Wed, 29 Jan 2014 11:30:08 +0000 Subject: [PATCH] coverity#1158171 Missing break in switch Change-Id: I20979bf40aeb2d14ffd78097a7ee9208ff53cec6 --- svx/source/unodraw/UnoGraphicExporter.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx index ce7090340ca8..3f67ed42dc2d 100644 --- a/svx/source/unodraw/UnoGraphicExporter.cxx +++ b/svx/source/unodraw/UnoGraphicExporter.cxx @@ -362,6 +362,7 @@ IMPL_LINK(GraphicExporter, CalcFieldValueHdl, EditFieldInfo*, pInfo) break; case SVX_ROMAN_UPPER: bUpper = sal_True; + /* Fall through */ case SVX_ROMAN_LOWER: aPageNumValue += SvxNumberFormat::CreateRomanString(mnPageNumber, bUpper); break;