diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-10 11:36:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-10 13:39:14 +0100 |
commit | 07dcd679ff58d2f3ab991b5e3e66a2046a8dfde6 (patch) | |
tree | 12b3b267a69aa5ca3e9727e0142d66e15d90b9fe | |
parent | 7413c75b71cb44c5c86a297a3e02784c9f347212 (diff) |
coverity#1225002 Uninitialized scalar field
Change-Id: Iec71c9b509b785a6fe043c62e103cb4a930fd416
-rw-r--r-- | vcl/source/outdev/outdev.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index 7be114ac1ee3..a10460923b94 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -148,6 +148,7 @@ OutputDevice::OutputDevice() : mbKerning = false; mbNewFont = true; mbTextLines = false; + mbTextBackground = false; mbTextSpecial = false; mbRefPoint = false; mbEnableRTL = false; // mirroring must be explicitly allowed (typically for windows only) |