summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-11-25 14:53:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-11-25 15:45:58 +0000
commit43e2b417970cb7968430a1e9ef2a5fb54af8434c (patch)
treedc548407425bcbc2f8455ab57cd602035a7d86b4
parentd05ae550316e3dc5afe799c7d6cf83f02e37d69b (diff)
coverity#1340225 Missing break in switch
Change-Id: I9f76340ccdb32f4337d0ebe85e9957fe8a3b19f9
-rw-r--r--vcl/source/gdi/virdev.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx
index cab8fa3953f3..085237fee1a5 100644
--- a/vcl/source/gdi/virdev.cxx
+++ b/vcl/source/gdi/virdev.cxx
@@ -165,6 +165,7 @@ void VirtualDevice::ImplInitVirDev( const OutputDevice* pOutDev,
{
case DeviceFormat::BITMASK:
mnBitCount = 1;
+ break;
default:
mnBitCount = pOutDev->GetBitCount();
break;