summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-18 12:28:42 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-18 15:18:10 +0000
commit244ed0e43aad317fd72e279f835c88e501230329 (patch)
treeb9df47963321d1fbf5a294b28d4d9c5eecbecba3 /vcl
parent96e834967c1d566c8c9368099287c2c32000cdef (diff)
coverity#738933 Uninitialized scalar field
Change-Id: Ice55badc2d02d2a49feafbff6ffe10c34b41fa52
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/gdimtf.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index 70346985f30a..a8768bff42f3 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -122,6 +122,7 @@ GDIMetaFile::GDIMetaFile() :
}
GDIMetaFile::GDIMetaFile( const GDIMetaFile& rMtf ) :
+ nCurrentActionElement( rMtf.nCurrentActionElement ),
aPrefMapMode ( rMtf.aPrefMapMode ),
aPrefSize ( rMtf.aPrefSize ),
aHookHdlLink ( rMtf.aHookHdlLink ),