From 98d00292861a8addef571523cc8556b36b0b1129 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 25 Nov 2015 14:53:55 +0000 Subject: coverity#1340225 Missing break in switch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I9f76340ccdb32f4337d0ebe85e9957fe8a3b19f9 (cherry picked from commit 43e2b417970cb7968430a1e9ef2a5fb54af8434c) Reviewed-on: https://gerrit.libreoffice.org/20176 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- vcl/source/gdi/virdev.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'vcl/source') 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; -- cgit