summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vcl/generic/glyphs/gcach_rbmp.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/vcl/generic/glyphs/gcach_rbmp.cxx b/vcl/generic/glyphs/gcach_rbmp.cxx
index 23d3ed9abe75..37f079c7548b 100644
--- a/vcl/generic/glyphs/gcach_rbmp.cxx
+++ b/vcl/generic/glyphs/gcach_rbmp.cxx
@@ -21,8 +21,15 @@
#include <string.h>
RawBitmap::RawBitmap()
-: mnAllocated(0)
-{}
+ : mnAllocated(0)
+ , mnWidth(0)
+ , mnHeight(0)
+ , mnScanlineSize(0)
+ , mnBitCount(0)
+ , mnXOffset(0)
+ , mnYOffset(0)
+{
+}
RawBitmap::~RawBitmap()
{}