Kaydet (Commit) 6900a3bf authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707958 Uninitialized scalar field

Change-Id: Ic21f72913c944510baeca3f0ec424485c72745c0
üst a7b6623b
......@@ -41,9 +41,10 @@ using namespace ::oox::core;
ExternalSheetDataContext::ExternalSheetDataContext(
WorkbookFragmentBase& rFragment, const Reference< XExternalSheetCache >& rxSheetCache ) :
WorkbookContextBase( rFragment ),
mxSheetCache( rxSheetCache )
WorkbookFragmentBase& rFragment, const Reference< XExternalSheetCache >& rxSheetCache )
: WorkbookContextBase(rFragment)
, mxSheetCache(rxSheetCache)
, mnCurrType(XML_TOKEN_INVALID)
{
OSL_ENSURE( mxSheetCache.is(), "ExternalSheetDataContext::ExternalSheetDataContext - missing sheet cache" );
}
......
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