Kaydet (Commit) 2a198c02 authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#1103739 unintialized members

Change-Id: I15860351c15f7c28ae197fa626c58b5f3ead8bb7
üst dace560b
...@@ -229,12 +229,15 @@ static double lcl_ConvertToDateValue( SwDoc& rDoc, sal_Int32 nDate ) ...@@ -229,12 +229,15 @@ static double lcl_ConvertToDateValue( SwDoc& rDoc, sal_Int32 nDate )
} }
SwCalc::SwCalc( SwDoc& rD ) SwCalc::SwCalc( SwDoc& rD )
: aErrExpr( aEmptyStr, SwSbxValue(), 0 ), : aErrExpr( aEmptyStr, SwSbxValue(), 0 )
rDoc( rD ), , nCommandPos(0)
pLclData( m_aSysLocale.GetLocaleDataPtr() ), , rDoc( rD )
pCharClass( &GetAppCharClass() ), , pLclData( m_aSysLocale.GetLocaleDataPtr() )
nListPor( 0 ), , pCharClass( &GetAppCharClass() )
eError( CALC_NOERR ) , nListPor( 0 )
, eCurrOper( CALC_NAME )
, eCurrListOper( CALC_NAME )
, eError( CALC_NOERR )
{ {
aErrExpr.aStr = "~C_ERR~"; aErrExpr.aStr = "~C_ERR~";
memset( VarTable, 0, sizeof(VarTable) ); memset( VarTable, 0, sizeof(VarTable) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment