diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-23 17:19:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-23 20:38:27 +0000 |
commit | 04fafa35fc42c22dbbaf22971a170dcbc0ca7288 (patch) | |
tree | f1bd5028c46dffd6c644498d270ec5f04d9ff2e6 /vcl | |
parent | bf110d40efcc79efb9247fdce5d2f54bafa6550b (diff) |
drop one of the Image ctors
Change-Id: I51178fa30418136d4e5d266715d450f1c967167c
Reviewed-on: https://gerrit.libreoffice.org/33475
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/image/Image.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vcl/source/image/Image.cxx b/vcl/source/image/Image.cxx index eee064b7433d..b1d3db915880 100644 --- a/vcl/source/image/Image.cxx +++ b/vcl/source/image/Image.cxx @@ -49,11 +49,6 @@ Image::Image(const BitmapEx& rBitmapEx) ImplInit(rBitmapEx); } -Image::Image(const Bitmap& rBitmap) -{ - ImplInit(rBitmap); -} - Image::Image(const Bitmap& rBitmap, const Color& rColor) { const BitmapEx aBitmapEx(rBitmap, rColor); |