diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-01-19 17:14:01 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-01-19 17:16:33 +0100 |
commit | 8ab3715d8e622d06cfaa404842de2d9f8ea66ef5 (patch) | |
tree | 18918eb078e170087eb0ebd1f722146588346731 /svgio | |
parent | 558aebe27b92eab29456e510d98347083118e8cf (diff) |
Again Fix others Consecutive return, break
Change-Id: I67a453bb09b794c996f5f02a065abe8cef6ca3b6
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svgreader/svgstyleattributes.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx index 07845df8c931..b85b27a85540 100644 --- a/svgio/source/svgreader/svgstyleattributes.cxx +++ b/svgio/source/svgreader/svgstyleattributes.cxx @@ -67,17 +67,14 @@ namespace svgio default: /* StrokeLinecap_notset, StrokeLinecap_butt */ { return com::sun::star::drawing::LineCap_BUTT; - break; } case StrokeLinecap_round: { return com::sun::star::drawing::LineCap_ROUND; - break; } case StrokeLinecap_square: { return com::sun::star::drawing::LineCap_SQUARE; - break; } } } |