summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-14 15:50:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-14 16:12:08 +0000
commit6391993d1ffb5ec6ce627671eb77925a4498946f (patch)
tree407563c4df6db9dcc49c136769274b568df5ad46 /vcl
parent39b68ccf5f31dd9fe364a68bb375c1020ef05c40 (diff)
move Image(Bitmap, MaskBitmap) code to last user of it
the last use looks rather dubious to me, I wonder if anything can really end up here Change-Id: I13314610405463122891b3ed0f311da65fd1d542
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/image/Image.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/source/image/Image.cxx b/vcl/source/image/Image.cxx
index e4dde10e4d5c..516883c8f170 100644
--- a/vcl/source/image/Image.cxx
+++ b/vcl/source/image/Image.cxx
@@ -77,12 +77,6 @@ Image::Image(const Bitmap& rBitmap)
ImplInit(rBitmap);
}
-Image::Image(const Bitmap& rBitmap, const Bitmap& rMaskBitmap)
-{
- const BitmapEx aBitmapEx(rBitmap, rMaskBitmap);
- ImplInit(aBitmapEx);
-}
-
Image::Image(const Bitmap& rBitmap, const Color& rColor)
{
const BitmapEx aBitmapEx(rBitmap, rColor);