Kaydet (Commit) ea7a0b35 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#704001 silence Unchecked return value

that's definitely ok, it returns if its an
advanced query, and we don't care as we're going
to force it to be anyway

Change-Id: I5c5fec3f0978bc7f66db0b746dd69b60dc4c9026
üst 8e3e99bb
...@@ -2061,7 +2061,7 @@ void SAL_CALL ScDatabaseRangeObj::setPropertyValue( ...@@ -2061,7 +2061,7 @@ void SAL_CALL ScDatabaseRangeObj::setPropertyValue(
{ {
// only here to set bIsAdvanced in ScDBData // only here to set bIsAdvanced in ScDBData
ScRange aRange; ScRange aRange;
aNewData.GetAdvancedQuerySource(aRange); (void)aNewData.GetAdvancedQuerySource(aRange);
aNewData.SetAdvancedQuerySource(&aRange); aNewData.SetAdvancedQuerySource(&aRange);
} }
else else
......
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