Kaydet (Commit) 259c2409 authored tarafından Eike Rathke's avatar Eike Rathke

Resolves: tdf#108279 dimension rows are 32-bit and don't wrap at 64k

Change-Id: I7bf7a149fb1db526ef62bea2f52b200cf5053cc2
üst c9707d2e
......@@ -2311,7 +2311,7 @@ void XclExpRowBuffer::Finalize( XclExpDefaultRowData& rDefRowData, const ScfUInt
// find used row range
if( rRow->IsEnabled() )
{
sal_uInt16 nXclRow = rRow->GetXclRow();
sal_uInt32 nXclRow = rRow->GetXclRow();
nFirstUsedXclRow = ::std::min< sal_uInt32 >( nFirstUsedXclRow, nXclRow );
nFirstFreeXclRow = ::std::max< sal_uInt32 >( nFirstFreeXclRow, nXclRow + 1 );
}
......
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