diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-03 09:42:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-03 13:08:55 +0100 |
commit | 7563216425c1a43166db083d809073b268f7884f (patch) | |
tree | 928275cad10ccd7a762f6959ec6b98fae47578f1 /svx/source/dialog/frmsel.cxx | |
parent | 7485e13b6a99eedc8730d1a3eb72599213208f26 (diff) |
sal_Int32 is sufficient for svx::frame::Array
Change-Id: Icc1ebf769796d23e226b72a3decf74ab15e09e0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126274
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/dialog/frmsel.cxx')
-rw-r--r-- | svx/source/dialog/frmsel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx index 7f11b1b7708f..e2be7400f89c 100644 --- a/svx/source/dialog/frmsel.cxx +++ b/svx/source/dialog/frmsel.cxx @@ -676,8 +676,8 @@ void FrameSelectorImpl::DrawAllFrameBorders() rBottomStyle.Type(), rBottomStyle.PatternScale() ); maArray.SetRowStyleBottom( mbHor ? 1 : 0, rInvertedBottom ); - for( size_t nCol = 0; nCol < maArray.GetColCount(); ++nCol ) - for( size_t nRow = 0; nRow < maArray.GetRowCount(); ++nRow ) + for( sal_Int32 nCol = 0; nCol < maArray.GetColCount(); ++nCol ) + for( sal_Int32 nRow = 0; nRow < maArray.GetRowCount(); ++nRow ) maArray.SetCellStyleDiag( nCol, nRow, maTLBR.GetUIStyle(), maBLTR.GetUIStyle() ); // This is used in the dialog/control for 'Border' attributes. When using |