summaryrefslogtreecommitdiff
path: root/vcl/source/bitmap/BitmapScaleConvolution.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-20 09:49:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-20 09:48:33 +0000
commite9e6228533b336317aa809a7aaaa4fd1c338d4f7 (patch)
tree54848bf2e97b449ebb40638932b935b2a645a064 /vcl/source/bitmap/BitmapScaleConvolution.cxx
parent03eb939856a73fed6bbf3850d7dc4d58594a7d98 (diff)
remove unused Box from ConvolutionKernelType enum
Change-Id: I9f8610bc9ed7d5c175c369973dc8906179ae042d Reviewed-on: https://gerrit.libreoffice.org/34456 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/bitmap/BitmapScaleConvolution.cxx')
-rw-r--r--vcl/source/bitmap/BitmapScaleConvolution.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/source/bitmap/BitmapScaleConvolution.cxx b/vcl/source/bitmap/BitmapScaleConvolution.cxx
index 6149573953f4..dde9cb6e4d6d 100644
--- a/vcl/source/bitmap/BitmapScaleConvolution.cxx
+++ b/vcl/source/bitmap/BitmapScaleConvolution.cxx
@@ -374,8 +374,6 @@ bool BitmapScaleConvolution::filter(Bitmap& rBitmap)
switch(meKernelType)
{
- case ConvolutionKernelType::Box:
- return ImplScaleConvolution(rBitmap, mrScaleX, mrScaleY, BoxKernel());
case ConvolutionKernelType::BiLinear:
return ImplScaleConvolution(rBitmap, mrScaleX, mrScaleY, BilinearKernel());
case ConvolutionKernelType::BiCubic: