Kaydet (Commit) 6869aaa2 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

C4701: potentially uninitialized local variable 'bTestEqualCondition' used

Change-Id: I01c9a166d0faabed4a92a0aa42a123432cb7e847
üst 2b3c23c8
...@@ -1172,7 +1172,7 @@ ScBaseCell* ScQueryCellIterator::GetThis() ...@@ -1172,7 +1172,7 @@ ScBaseCell* ScQueryCellIterator::GetThis()
++nRow; ++nRow;
else else
{ {
bool bTestEqualCondition; bool bTestEqualCondition = false;
if ( (pDoc->maTabs[nTab])->ValidQuery( nRow, *mpParam, if ( (pDoc->maTabs[nTab])->ValidQuery( nRow, *mpParam,
(nCol == static_cast<SCCOL>(nFirstQueryField) ? pCell : NULL), (nCol == static_cast<SCCOL>(nFirstQueryField) ? pCell : NULL),
(nTestEqualCondition ? &bTestEqualCondition : NULL) ) ) (nTestEqualCondition ? &bTestEqualCondition : NULL) ) )
......
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