diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-06 09:17:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-06 09:45:56 +0100 |
commit | 9b237f9d84e65b16502f2af0dab78801168cd262 (patch) | |
tree | a0599054ac9090d208d53d8416f993bbc00d9b58 /sd | |
parent | 68e18231b94f6db7999ff58f9b7edd9ae8164fb7 (diff) |
coverity#705224 Missing break in switch, surely unintentional
Change-Id: I9ebeb373f5ab15220e3d9a4bb57db88d7a8f2714
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/unoidl/SdUnoDrawView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/unoidl/SdUnoDrawView.cxx b/sd/source/ui/unoidl/SdUnoDrawView.cxx index 9a4c554e5ad1..436736595fe2 100644 --- a/sd/source/ui/unoidl/SdUnoDrawView.cxx +++ b/sd/source/ui/unoidl/SdUnoDrawView.cxx @@ -381,7 +381,7 @@ void SdUnoDrawView::setFastPropertyValue ( rValue >>= bValue; setLayerMode( bValue ); } - + break; case DrawController::PROPERTY_ACTIVE_LAYER: { Reference<drawing::XLayer> xLayer; |