diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx index 900c29bf1ce0..b16aaa245d71 100644 --- a/sc/source/core/data/table2.cxx +++ b/sc/source/core/data/table2.cxx @@ -2997,7 +2997,7 @@ sal_uLong ScTable::GetRowHeight( SCROW nStartRow, SCROW nEndRow, bool bHiddenAsZ return nHeight; } else - return (sal_uLong) ((nEndRow - nStartRow + 1) * ScGlobal::nStdRowHeight); + return (nEndRow - nStartRow + 1) * (sal_uLong)ScGlobal::nStdRowHeight; }