diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-24 13:35:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-24 14:02:00 +0000 |
commit | 604ce7566d0ab2c6ddc94951773c23bf716728f4 (patch) | |
tree | e5a5312c2d54bfe9c69a0445aae65af3fdacee64 /svtools | |
parent | 7b1c01887719f5631c67a581183f5a4b615d70c8 (diff) |
coverity#708304 Uninitialized scalar field
Change-Id: If82964036862e309dc1c90036df59942a24fd7d6
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/valueacc.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/control/valueacc.cxx b/svtools/source/control/valueacc.cxx index 1306c96551af..cba9d062d22b 100644 --- a/svtools/source/control/valueacc.cxx +++ b/svtools/source/control/valueacc.cxx @@ -40,6 +40,7 @@ ValueSetItem::ValueSetItem( ValueSet& rParent ) , meType(VALUESETITEM_NONE) , mbVisible(true) , mpData(NULL) + , mbSelected(false) , mpxAcc(NULL) { } |