diff options
author | Michael Stahl <mst@openoffice.org> | 2010-07-01 18:13:33 +0200 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2010-07-01 18:13:33 +0200 |
commit | b62e3cce7e4894f8a0ddf4d5d0c8d02ef40d7c52 (patch) | |
tree | 122c1e4b64aeec02f06a8cf4a443e020a405491d /svtools/source/uno/unoimap.cxx | |
parent | 7f0993d43019a0ccb7f89c11fc23704c063b902f (diff) |
sw33bf06: valgrind: SvUnoImageMapObject: initialize members
Diffstat (limited to 'svtools/source/uno/unoimap.cxx')
-rw-r--r-- | svtools/source/uno/unoimap.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/svtools/source/uno/unoimap.cxx b/svtools/source/uno/unoimap.cxx index 6b6e35482ae9..88f22f0c8402 100644 --- a/svtools/source/uno/unoimap.cxx +++ b/svtools/source/uno/unoimap.cxx @@ -210,6 +210,8 @@ PropertySetInfo* SvUnoImageMapObject::createPropertySetInfo( UINT16 nType ) SvUnoImageMapObject::SvUnoImageMapObject( UINT16 nType, const SvEventDescription* pSupportedMacroItems ) : PropertySetHelper( createPropertySetInfo( nType ) ), mnType( nType ) +, mbIsActive( true ) +, mnRadius( 0 ) { mpEvents = new SvMacroTableEventDescriptor( pSupportedMacroItems ); mpEvents->acquire(); @@ -218,6 +220,8 @@ SvUnoImageMapObject::SvUnoImageMapObject( UINT16 nType, const SvEventDescription SvUnoImageMapObject::SvUnoImageMapObject( const IMapObject& rMapObject, const SvEventDescription* pSupportedMacroItems ) : PropertySetHelper( createPropertySetInfo( rMapObject.GetType() ) ), mnType( rMapObject.GetType() ) +, mbIsActive( true ) +, mnRadius( 0 ) { maURL = rMapObject.GetURL(); maAltText = rMapObject.GetAltText(); |