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

Resolves: fdo#75525 out by one error

Change-Id: I0171d2a79b6b015fa2f01d78228e901005017fb0
üst aef2111f
......@@ -641,7 +641,7 @@ SmCategoryDesc::SmCategoryDesc(VclBuilderContainer& rBuilder, sal_uInt16 nCatego
Graphics [i] = 0;
}
const FieldMinMax& rMinMax = pMinMaxData[ nCategoryIdx ][i];
const FieldMinMax& rMinMax = pMinMaxData[ nCategoryIdx-1 ][i];
Value[i] = Minimum[i] = rMinMax.nMin;
Maximum[i] = rMinMax.nMax;
}
......
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