summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-05 09:57:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-05 13:35:50 +0100
commit1e9ce046a3b9e6b631fc8c31faeb758152a477af (patch)
treebdc492af1ea92a50630daaf80c96b749c92cdb82 /sd
parentfd31c815b9ed30908d78d730c3e253ea83548cdc (diff)
coverity#705215 Missing break in switch
Change-Id: I52cf32e9349e547e3445fbb266a74495d69aaa3f
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/drawdoc4.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sd/source/core/drawdoc4.cxx b/sd/source/core/drawdoc4.cxx
index c2e5f57466ab..2b724a93c7cc 100644
--- a/sd/source/core/drawdoc4.cxx
+++ b/sd/source/core/drawdoc4.cxx
@@ -1054,6 +1054,7 @@ OUString SdDrawDocument::CreatePageNumValue(sal_uInt16 nNum) const
break;
case SVX_ROMAN_UPPER:
bUpper = true;
+ //fall-through
case SVX_ROMAN_LOWER:
aPageNumValue += SvxNumberFormat::CreateRomanString(nNum, bUpper);
break;