diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-25 14:21:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-25 16:56:08 +0000 |
commit | e9c17354d3cfb4f808fa2092ffcb3b9de7654dee (patch) | |
tree | b24b7049034125b5b878ec043de31aa156abd6ee /vcl/source/image/Image.cxx | |
parent | 499370e598fdf898a21ccd26544213cf9cc939fa (diff) |
move Image ctor variant with mask color to callers
Change-Id: I81a52aeb855edca823881360831b26e252780053
Diffstat (limited to 'vcl/source/image/Image.cxx')
-rw-r--r-- | vcl/source/image/Image.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/source/image/Image.cxx b/vcl/source/image/Image.cxx index b1d3db915880..649bf1551cf3 100644 --- a/vcl/source/image/Image.cxx +++ b/vcl/source/image/Image.cxx @@ -49,12 +49,6 @@ Image::Image(const BitmapEx& rBitmapEx) ImplInit(rBitmapEx); } -Image::Image(const Bitmap& rBitmap, const Color& rColor) -{ - const BitmapEx aBitmapEx(rBitmap, rColor); - ImplInit(aBitmapEx); -} - Image::Image(const css::uno::Reference< css::graphic::XGraphic >& rxGraphic) { const Graphic aGraphic(rxGraphic); |