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

coverity#708134 Uninitialized scalar field

Change-Id: Id00f771bb7ba80c60aae5f94050319b26aa2c861
üst a2c1d602
......@@ -60,7 +60,12 @@ class SdPageNameControllerItem;
class NavDocInfo
{
public:
NavDocInfo() { mpDocShell = NULL; }
NavDocInfo()
: bName(false)
, bActive(false)
, mpDocShell(NULL)
{
}
sal_Bool HasName() { return( (sal_Bool) bName ); }
sal_Bool IsActive() { return( (sal_Bool) bActive ); }
......
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