From f1ad620b918b4eae6d3f92bb4cf5d0822c7264eb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 9 May 2015 14:37:22 +0100 Subject: coverity#1297236 Uninitialized scalar field Change-Id: I2c19d1a0f8ad31cdf384ab301f3dae99a6ea9933 --- framework/source/helper/statusindicator.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'framework/source/helper') 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) { } -- cgit