diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-09 14:37:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-09 17:18:35 +0100 |
commit | f1ad620b918b4eae6d3f92bb4cf5d0822c7264eb (patch) | |
tree | 9086433d6a1a7d22191df2b50f8d69ce8173abe3 /framework/source/helper | |
parent | 548a6894814c4fd067137d44bb009205911bf8c9 (diff) |
coverity#1297236 Uninitialized scalar field
Change-Id: I2c19d1a0f8ad31cdf384ab301f3dae99a6ea9933
Diffstat (limited to 'framework/source/helper')
-rw-r--r-- | framework/source/helper/statusindicator.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/source/helper/statusindicator.cxx b/framework/source/helper/statusindicator.cxx index 6c78d0a87a9f..5c9dafc5ba81 100644 --- a/framework/source/helper/statusindicator.cxx +++ b/framework/source/helper/statusindicator.cxx @@ -23,7 +23,9 @@ namespace framework{ StatusIndicator::StatusIndicator(StatusIndicatorFactory* pFactory) - : m_xFactory (pFactory) + : m_xFactory(pFactory) + , m_nRange(100) + , m_nLastCallbackPercent(-1) { } |