diff options
Diffstat (limited to 'vcl/source/image/ImplImage.cxx')
-rw-r--r-- | vcl/source/image/ImplImage.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/vcl/source/image/ImplImage.cxx b/vcl/source/image/ImplImage.cxx index ad4312024f92..82a2099e8813 100644 --- a/vcl/source/image/ImplImage.cxx +++ b/vcl/source/image/ImplImage.cxx @@ -29,15 +29,11 @@ #include <image.h> #include <memory> -ImplImage::ImplImage() +ImplImage::ImplImage(const BitmapEx &rBitmapEx) : maBitmapChecksum(0) - , mpBitmapEx() + , maBitmapEx(rBitmapEx) , maDisabledBitmapEx() { } -ImplImage::~ImplImage() -{ -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |