cppcheck: fix some uninitMemberVar in svtools part

Change-Id: Icee2501b2a33afddaa3d08186bb806acf785bf4c
This commit is contained in:
Julien Nabet
2013-06-17 22:26:38 +02:00
parent ace2106744
commit ea3b8ab789
3 changed files with 4 additions and 2 deletions

View File

@@ -235,6 +235,7 @@ struct EmbeddedObjectRef_Impl
awt::Size aDefaultSizeForChart_In_100TH_MM;//#i103460# charts do not necessaryly have an own size within ODF files, in this case they need to use the size settings from the surrounding frame, which is made available with this member
EmbeddedObjectRef_Impl() :
xListener(0),
pContainer(NULL),
pGraphic(NULL),
nViewAspect(embed::Aspects::MSOLE_CONTENT),
@@ -246,6 +247,7 @@ struct EmbeddedObjectRef_Impl
EmbeddedObjectRef_Impl( const EmbeddedObjectRef_Impl& r ) :
mxObj(r.mxObj),
xListener(0),
aPersistName(r.aPersistName),
aMediaType(r.aMediaType),
pContainer(r.pContainer),

View File

@@ -42,7 +42,7 @@ struct SvParser_Impl
rtl_TextToUnicodeContext hContext;
SvParser_Impl() :
nSaveToken(0), hConv( 0 ), hContext( (rtl_TextToUnicodeContext)1 )
nTokenValue(0), nToken(0), nSaveToken(0), hConv( 0 ), hContext( (rtl_TextToUnicodeContext)1 )
{
}