diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-29 09:17:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-29 11:10:27 +0100 |
commit | 7be2fba41dfb184a0bf6f5c7f197e2222d43f3e8 (patch) | |
tree | dbab62a37a6134ffb14c7f8a8f8a95653a7e650f /include | |
parent | d654c1195450f21e112adbb76b8a13b3b09dfa73 (diff) |
coverity#708213 ditch the empty ctor/dtors
which should silence
"708213 Uninitialized pointer field"
Change-Id: I0e16a0b02f3d48c4da324f371cae2234ad4cb6e2
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/salbtype.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/vcl/salbtype.hxx b/include/vcl/salbtype.hxx index 82ae03646a11..9f2dd656c497 100644 --- a/include/vcl/salbtype.hxx +++ b/include/vcl/salbtype.hxx @@ -109,8 +109,6 @@ public: inline BitmapColor( const Color& rColor ); explicit inline BitmapColor( sal_uInt8 cIndex ); - inline ~BitmapColor() {}; - inline bool operator==( const BitmapColor& rBitmapColor ) const; inline bool operator!=( const BitmapColor& rBitmapColor ) const; @@ -246,8 +244,6 @@ public: { } - ~ColorMask() {} - inline sal_uInt32 GetRedMask() const; inline sal_uInt32 GetGreenMask() const; inline sal_uInt32 GetBlueMask() const; @@ -279,9 +275,6 @@ struct VCL_DLLPUBLIC BitmapBuffer ColorMask maColorMask; BitmapPalette maPalette; sal_uInt8* mpBits; - - BitmapBuffer(){} - ~BitmapBuffer() {} }; // - Access modes - |