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

coverity#707853 Uninitialized scalar field

Change-Id: I6a406a990a114ba8c0d92b92bd4a5cb256954303
üst fb3fdc66
...@@ -3300,8 +3300,15 @@ PPTExtParaProv::~PPTExtParaProv() ...@@ -3300,8 +3300,15 @@ PPTExtParaProv::~PPTExtParaProv()
aBuGraList.clear(); aBuGraList.clear();
} }
PPTNumberFormatCreator::PPTNumberFormatCreator( PPTExtParaProv* pParaProv ) : PPTNumberFormatCreator::PPTNumberFormatCreator( PPTExtParaProv* pParaProv )
pExtParaProv ( pParaProv ) : pExtParaProv(pParaProv)
, nIsBullet(0)
, nBulletChar(0)
, nBulletFont(0)
, nBulletHeight(0)
, nBulletColor(0)
, nTextOfs(0)
, nBulletOfs(0)
{ {
} }
......
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