fix uninitialized variables

This commit is contained in:
andrea reale
2022-03-01 00:01:45 +01:00
committed by Uwe
parent 974bb02c4d
commit 36d865df04

View File

@@ -388,7 +388,7 @@ void PropertySheet::pasteCells(XMLReader &reader, Range dstRange) {
int dstCols = dstRange.colCount();
CellAddress dstFrom = dstRange.from();
int roffset,coffset;
int roffset=0,coffset=0;
AtomicPropertyChange signaller(*this);
for(int ri=0; ri < rangeCount; ++ri) {