sw/source/uibase/misc/redlndlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eb6381435fb06c232bdc6b42c2bf0cd711c0bbbd
Author: Noel Grandin <n...@peralex.com>
Date:   Tue Oct 6 08:49:33 2015 +0200

    loplugin:loopvartoosmall
    
    Change-Id: I502a7b8b2d18c9bd5c82e8abd8e3d98f21e8c446

diff --git a/sw/source/uibase/misc/redlndlg.cxx 
b/sw/source/uibase/misc/redlndlg.cxx
index 322718f..9bf3477 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)
         {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to