Kaydet (Commit) 194cea28 authored tarafından Eike Rathke's avatar Eike Rathke

coverity#1362685 Uninitialized scalar variable (UNINIT)

Change-Id: I5da1a04d2fce6583fad0934d06dcba452181f256
üst 1d4ad943
...@@ -1885,7 +1885,7 @@ bool ScDPObject::ParseFilters( ...@@ -1885,7 +1885,7 @@ bool ScDPObject::ParseFilters(
{ {
// Parse possible number from aQueryValueName and format // Parse possible number from aQueryValueName and format
// locale independent as aQueryValue. // locale independent as aQueryValue.
sal_uInt32 nNumFormat; sal_uInt32 nNumFormat = 0;
double fValue; double fValue;
if (pFormatter->IsNumberFormat( aQueryValueName, nNumFormat, fValue)) if (pFormatter->IsNumberFormat( aQueryValueName, nNumFormat, fValue))
aQueryValue = ScDPCache::GetLocaleIndependentFormattedString( fValue, *pFormatter, nNumFormat); aQueryValue = ScDPCache::GetLocaleIndependentFormattedString( fValue, *pFormatter, nNumFormat);
......
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