summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lotuswordpro/source/filter/lwptablelayout.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwptablelayout.hxx b/lotuswordpro/source/filter/lwptablelayout.hxx
index f6dd6acc8be7..1e7fb3b35a65 100644
--- a/lotuswordpro/source/filter/lwptablelayout.hxx
+++ b/lotuswordpro/source/filter/lwptablelayout.hxx
@@ -102,7 +102,7 @@ public:
{
if (nRow >= m_nRows || nCol >= m_nCols)
return;
- m_WordProCellsMap[nRow * m_nCols + nCol] = pCell;
+ m_WordProCellsMap[static_cast<size_t>(nRow) * m_nCols + nCol] = pCell;
};
protected:
void Read() SAL_OVERRIDE;