diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-24 14:18:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-24 15:05:00 +0000 |
commit | 88aeba2d0ed2cb2eda7a24ec971792b629506ffd (patch) | |
tree | 7825a71027f4f406b9f237e9798a63e7063ba9f5 | |
parent | afb90e554c074a306d06a5c6c3e59e4c38a4ff66 (diff) |
coverity#738923 Uninitialized scalar field
Change-Id: I37e6fac75c5919a187c49490814d409d4c44006b
-rw-r--r-- | vcl/inc/generic/glyphcache.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx index 99274d171f6b..f6e6e890c3e1 100644 --- a/vcl/inc/generic/glyphcache.hxx +++ b/vcl/inc/generic/glyphcache.hxx @@ -153,6 +153,11 @@ struct ExtGlyphData class GlyphData { public: + mnLruValue() + : mnLruValue(0) + { + } + const GlyphMetric& GetMetric() const { return maMetric; } Size GetSize() const { return maMetric.GetSize(); } |