diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:53:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:37 +0000 |
commit | b6662967ab434f36504068687727ea6fdee66e79 (patch) | |
tree | a465e19dd45ca9f2770d92d9441093c802e9912d /toolkit/source | |
parent | 470b21a2bcfb262df7337380815a127df00f5479 (diff) |
coverity#708532 Uninitialized scalar field
Change-Id: I9de7a5b3f42f1810639663c25965b196a8959f3e
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/awt/vclxgraphics.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxgraphics.cxx b/toolkit/source/awt/vclxgraphics.cxx index 3e7461fdd305..21cc15ddd971 100644 --- a/toolkit/source/awt/vclxgraphics.cxx +++ b/toolkit/source/awt/vclxgraphics.cxx @@ -57,9 +57,10 @@ IMPL_XTYPEPROVIDER_START( VCLXGraphics ) IMPL_XTYPEPROVIDER_END VCLXGraphics::VCLXGraphics() + : mpOutputDevice(NULL) + , meRasterOp(ROP_OVERPAINT) + , mpClipRegion(NULL) { - mpOutputDevice = NULL; - mpClipRegion = NULL; } VCLXGraphics::~VCLXGraphics() |