diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-06 08:49:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-06 08:49:33 +0200 |
commit | eb6381435fb06c232bdc6b42c2bf0cd711c0bbbd (patch) | |
tree | ad4c211d56afe010eba5f305e7c6fa69abb11e15 /sw | |
parent | 946b9a04c4a9d252661fe7190213c225fa79bf92 (diff) |
loplugin:loopvartoosmall
Change-Id: I502a7b8b2d18c9bd5c82e8abd8e3d98f21e8c446
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/misc/redlndlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/misc/redlndlg.cxx b/sw/source/uibase/misc/redlndlg.cxx index 322718f0ba03..9bf3477a8833 100644 --- a/sw/source/uibase/misc/redlndlg.cxx +++ b/sw/source/uibase/misc/redlndlg.cxx @@ -526,7 +526,7 @@ sal_uInt16 SwRedlineAcceptDlg::CalcDiff(sal_uInt16 nStart, bool bChild) // have entries been deleted? const SwRedlineData *pRedlineData = &rRedln.GetRedlineData(); - for (sal_uInt16 i = nStart + 1; i < m_RedlineParents.size(); i++) + for (size_t i = nStart + 1; i < m_RedlineParents.size(); i++) { if (m_RedlineParents[i]->pData == pRedlineData) { |