diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-17 16:08:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-17 17:19:32 +0100 |
commit | 56a00607a4d25cbfd6660136aa08a73f732bc4a0 (patch) | |
tree | a5adf1f2af5da42a6db1e51ae3779a16ef82ba04 /vcl | |
parent | 8f1c556978f30807a4d4034615690005704b27ed (diff) |
coverity#708605 Uninitialized scalar field
Change-Id: Iaa4b0c4a272a899482b079b1f36f6e3e57721360
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/metaact.cxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index e46c75b78859..cfcda99eb54c 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -944,7 +944,16 @@ void MetaPolyPolygonAction::Read( SvStream& rIStm, ImplMetaReadData* ) } } -IMPL_META_ACTION( Text, META_TEXT_ACTION ) +MetaTextAction::MetaTextAction() : + MetaAction ( META_TEXT_ACTION ), + mnIndex ( 0 ), + mnLen ( 0 ) +{ +} + +MetaTextAction::~MetaTextAction() +{ +} MetaTextAction::MetaTextAction( const Point& rPt, const OUString& rStr, sal_Int32 nIndex, sal_Int32 nLen ) : |