Kaydet (Commit) eb638143 authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:loopvartoosmall

Change-Id: I502a7b8b2d18c9bd5c82e8abd8e3d98f21e8c446
üst 946b9a04
......@@ -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)
{
......
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