diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-09 19:32:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-09 21:20:11 +0000 |
commit | dc4746a25bebcfe93fa65f23907b829ff8174aa0 (patch) | |
tree | 8a117d8a0ee1dbcd55b38d423f0f0f049223f276 | |
parent | 1dfbc1b30d10609b08e553dfe578f1ba3d6c4067 (diff) |
coverity#708299 Uninitialized scalar field
Change-Id: I15b3c6d8a2af7be1fd8cada39c58ed706271f307
-rw-r--r-- | svtools/source/control/hyperlabel.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/svtools/source/control/hyperlabel.cxx b/svtools/source/control/hyperlabel.cxx index 799941dbda0e..8230c53e4ae1 100644 --- a/svtools/source/control/hyperlabel.cxx +++ b/svtools/source/control/hyperlabel.cxx @@ -65,6 +65,10 @@ namespace svt HyperLabelImpl::HyperLabelImpl() + : ID(0) + , Index(0) + , bInteractive(false) + , m_bHyperMode(false) { } |