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

coverity#707629 Uninitialized scalar field

Change-Id: I0e3d9d4dad46e9b88be11cc9ac2c7d3c0c4b6f6e
üst fdc28850
...@@ -41,7 +41,13 @@ struct SbxAppData ...@@ -41,7 +41,13 @@ struct SbxAppData
LanguageType eBasicFormaterLangType; LanguageType eBasicFormaterLangType;
// It might be useful to store this class 'global' because some string reosurces are saved here // It might be useful to store this class 'global' because some string reosurces are saved here
SbxAppData() : eSbxError( SbxERR_OK ), aFacs(), pBasicFormater( NULL ) {} SbxAppData()
: eSbxError(SbxERR_OK)
, aFacs()
, pBasicFormater(NULL)
, eBasicFormaterLangType(LANGUAGE_DONTKNOW)
{
}
~SbxAppData(); ~SbxAppData();
}; };
......
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